Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class ChartStillIndicatorCollection : IEnumerable
Inheritance: objectChartStillIndicatorCollection
Implements:
Constructors
Initializes a new instance of the ChartStillIndicatorCollection class.
public ChartStillIndicatorCollection()
Properties
Gets the number of elements contained in the ICollection<T>.
public int Count { get; }
The number of elements contained in the ICollection<T>.
Gets a value indicating whether the ICollection<T> is read-only.
public bool IsReadOnly { get; }
true if the ICollection<T> is read-only; otherwise, false.
Gets or sets the ChartStillIndicator at the specified index.
Methods
Adds the specified item.
Removes all items from the ICollection<T>.
Determines whether the collection contains the specified item.
public bool Contains(ChartStillIndicator item)
The item.
Returns:Copies the entire collection starting at the given index.
public void CopyTo(ChartStillIndicator[] array, int arrayIndex)
The array.
arrayIndexintIndex of the array.
Returns an enumerator that iterates through the collection.
public IEnumerator<ChartStillIndicator> GetEnumerator()
IEnumerator<ChartStillIndicator>
A IEnumerator<T> that can be used to iterate through the collection.
Returns the index of the passed item.
Inserts the item at the specified index.
public void Insert(int index, ChartStillIndicator item)
The index.
itemChartStillIndicatorThe item.
Removes the specified item.
Removes the IList<T> item at the specified index.
public void RemoveAt(int index)
The zero-based index of the item to remove.
Exceptions:index is not a valid index in the IList<T>.
The IList<T> is read-only.