Class DataPointCollection<T>
Represents a typed element collection which accepts DataPoint instances only.
Inheritance
System.Object
System.Collections.ObjectModel.Collection<T>
DataPointCollection<T>
Inherited Members
System.Collections.ObjectModel.Collection<T>.Add(T)
System.Collections.ObjectModel.Collection<T>.Clear()
System.Collections.ObjectModel.Collection<T>.CopyTo(T[], System.Int32)
System.Collections.ObjectModel.Collection<T>.Contains(T)
System.Collections.ObjectModel.Collection<T>.GetEnumerator()
System.Collections.ObjectModel.Collection<T>.IndexOf(T)
System.Collections.ObjectModel.Collection<T>.Insert(System.Int32, T)
System.Collections.ObjectModel.Collection<T>.Remove(T)
System.Collections.ObjectModel.Collection<T>.RemoveAt(System.Int32)
System.Collections.ObjectModel.Collection<T>.SetItem(System.Int32, T)
System.Collections.ObjectModel.Collection<T>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.get_Item(System.Int32)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.Add(System.Object)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.Contains(System.Object)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.IndexOf(System.Object)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.Remove(System.Object)
System.Collections.ObjectModel.Collection<T>.Count
System.Collections.ObjectModel.Collection<T>.Items
System.Collections.ObjectModel.Collection<T>.Item[System.Int32]
System.Collections.ObjectModel.Collection<T>.System.Collections.Generic.ICollection<T>.IsReadOnly
System.Collections.ObjectModel.Collection<T>.System.Collections.ICollection.IsSynchronized
System.Collections.ObjectModel.Collection<T>.System.Collections.ICollection.SyncRoot
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.Item[System.Int32]
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.IsReadOnly
System.Collections.ObjectModel.Collection<T>.System.Collections.IList.IsFixedSize
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class DataPointCollection<T> : ElementCollection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IList<DataPoint>, ICollection<DataPoint>, IEnumerable<DataPoint>, IEnumerable where T : DataPoint
Type Parameters
T
Instances of type DataPoint. |
Explicit Interface Implementations
ICollection<DataPoint>.Add(DataPoint)
Declaration
void ICollection<DataPoint>.Add(DataPoint item)
Parameters
DataPoint
item
|
Implements
System.Collections.Generic.ICollection<T>.Add(T)
ICollection<DataPoint>.Clear()
Declaration
void ICollection<DataPoint>.Clear()
Implements
System.Collections.Generic.ICollection<T>.Clear()
ICollection<DataPoint>.Contains(DataPoint)
Declaration
bool ICollection<DataPoint>.Contains(DataPoint item)
Parameters
DataPoint
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Contains(T)
ICollection<DataPoint>.CopyTo(DataPoint[], Int32)
Declaration
void ICollection<DataPoint>.CopyTo(DataPoint[] array, int arrayIndex)
Parameters
DataPoint[]
array
|
System.Int32
arrayIndex
|
Implements
System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
ICollection<DataPoint>.Count
Declaration
int ICollection<DataPoint>.Count { get; }
Returns
System.Int32
|
Implements
System.Collections.Generic.ICollection<T>.Count
ICollection<DataPoint>.IsReadOnly
Declaration
bool ICollection<DataPoint>.IsReadOnly { get; }
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.IsReadOnly
ICollection<DataPoint>.Remove(DataPoint)
Declaration
bool ICollection<DataPoint>.Remove(DataPoint item)
Parameters
DataPoint
item
|
Returns
System.Boolean
|
Implements
System.Collections.Generic.ICollection<T>.Remove(T)
IEnumerable<DataPoint>.GetEnumerator()
Declaration
IEnumerator<DataPoint> IEnumerable<DataPoint>.GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<DataPoint>
|
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
IList<DataPoint>.get_Item(Int32)
Declaration
DataPoint IList<DataPoint>.get_Item(int index)
Parameters
System.Int32
index
|
Returns
DataPoint
|
Implements
System.Collections.Generic.IList<T>.get_Item(System.Int32)
IList<DataPoint>.IndexOf(DataPoint)
Declaration
int IList<DataPoint>.IndexOf(DataPoint item)
Parameters
DataPoint
item
|
Returns
System.Int32
|
Implements
System.Collections.Generic.IList<T>.IndexOf(T)
IList<DataPoint>.Insert(Int32, DataPoint)
Declaration
void IList<DataPoint>.Insert(int index, DataPoint item)
Parameters
System.Int32
index
|
DataPoint
item
|
Implements
System.Collections.Generic.IList<T>.Insert(System.Int32, T)
IList<DataPoint>.Item[Int32]
Declaration
DataPoint IList<DataPoint>.this[] { get; set; }
Parameters
System.Int32
index
|
Returns
DataPoint
|
Implements
System.Collections.Generic.IList<T>.Item[System.Int32]
IList<DataPoint>.RemoveAt(Int32)
Declaration
void IList<DataPoint>.RemoveAt(int index)
Parameters
System.Int32
index
|
Implements
System.Collections.Generic.IList<T>.RemoveAt(System.Int32)
IList<DataPoint>.set_Item(Int32, DataPoint)
Declaration
void IList<DataPoint>.set_Item(int index, DataPoint value)
Parameters
System.Int32
index
|
DataPoint
value
|
Implements
System.Collections.Generic.IList<T>.set_Item(System.Int32, T)
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
System.Collections.IEnumerable.GetEnumerator()