public int Add(FinancialMarkerType markerName, int firstPointIndex, int secondPointIndex, int firstYIndex, int secondYIndex, Color lineColor, int lineWidth, Color textColor, Font textFont) { FinancialMarker value = new FinancialMarker(markerName, firstPointIndex, secondPointIndex, firstYIndex, secondYIndex, lineColor, lineWidth, textColor, textFont); int result = array.Add(value); Invalidate(); return(result); }
public void Insert(int index, FinancialMarkerType markerName, int firstPointIndex, int secondPointIndex, int firstYIndex, int secondYIndex, Color lineColor, int lineWidth, Color textColor, Font textFont) { FinancialMarker value = new FinancialMarker(markerName, firstPointIndex, secondPointIndex, firstYIndex, secondYIndex, lineColor, lineWidth, textColor, textFont); array.Insert(index, value); }
public void Remove(FinancialMarker value) { array.Remove(value); Invalidate(); }
public bool Contains(FinancialMarker value) { return(array.Contains(value)); }
public int IndexOf(FinancialMarker value) { return(array.IndexOf(value)); }
public void Insert(int index, FinancialMarker value) { Insert(index, (object)value); }