public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destType) { if (destType == typeof(string) && value is GraphLine) { // Cast the value to an Employee type GraphLine pp = (GraphLine)value; return(pp.Symbol + ", " + pp.Numberofmeasurements.ToString()); } return(base.ConvertTo(context, culture, value, destType)); }
public bool Contains(GraphLine value) { // If value is not of type Int16, this will return false. return(List.Contains(value)); }
public void Remove(GraphLine value) { List.Remove(value); }
public void Insert(int index, GraphLine value) { List.Insert(index, value); }
public int IndexOf(GraphLine value) { return(List.IndexOf(value)); }
public int Add(GraphLine value) { return(List.Add(value)); }