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