Class DataPoint3DCollection<T>
Represents a typed data point collection.
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class DataPoint3DCollection<T> : Collection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IList<DataPoint3D>, ICollection<DataPoint3D>, IEnumerable<DataPoint3D>, IDataPointCollection, IEnumerable<IDataPoint>, IEnumerable, ITrackableCollection where T : DataPoint3D
Type Parameters
T
The data point type. |
Constructors
DataPoint3DCollection()
Declaration
public DataPoint3DCollection()
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
Overrides
InsertItem(Int32, T)
Inserts the item at the specified index.
Declaration
protected override void InsertItem(int index, T item)
Parameters
System.Int32
index
The index at which insertion should happen. |
T
item
The item to be inserted. |
Overrides
RemoveItem(Int32)
Removes the item at the specified index.
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
The index at which removal should happen. |
Overrides
SetItem(Int32, T)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, T item)
Parameters
System.Int32
index
The zero-based index of the element to replace. |
T
item
The new value for the element at the specified index. |
Overrides
Explicit Interface Implementations
ICollection<DataPoint3D>.Add(DataPoint3D)
Declaration
void ICollection<DataPoint3D>.Add(DataPoint3D item)
Parameters
DataPoint3D
item
|
Implements
ICollection<DataPoint3D>.Clear()
Declaration
void ICollection<DataPoint3D>.Clear()
Implements
ICollection<DataPoint3D>.Contains(DataPoint3D)
Declaration
bool ICollection<DataPoint3D>.Contains(DataPoint3D item)
Parameters
DataPoint3D
item
|
Returns
System.Boolean
|
Implements
ICollection<DataPoint3D>.CopyTo(DataPoint3D[], Int32)
Declaration
void ICollection<DataPoint3D>.CopyTo(DataPoint3D[] array, int arrayIndex)
Parameters
DataPoint3D[]
array
|
System.Int32
arrayIndex
|
Implements
ICollection<DataPoint3D>.Count
Declaration
int ICollection<DataPoint3D>.Count { get; }
Returns
System.Int32
|
Implements
ICollection<DataPoint3D>.IsReadOnly
Declaration
bool ICollection<DataPoint3D>.IsReadOnly { get; }
Returns
System.Boolean
|
Implements
ICollection<DataPoint3D>.Remove(DataPoint3D)
Declaration
bool ICollection<DataPoint3D>.Remove(DataPoint3D item)
Parameters
DataPoint3D
item
|
Returns
System.Boolean
|
Implements
IEnumerable<DataPoint3D>.GetEnumerator()
Declaration
IEnumerator<DataPoint3D> IEnumerable<DataPoint3D>.GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<DataPoint3D>
|
Implements
IEnumerable<IDataPoint>.GetEnumerator()
Declaration
IEnumerator<IDataPoint> IEnumerable<IDataPoint>.GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<Telerik.Charting.IDataPoint>
|
Implements
IList<DataPoint3D>.get_Item(Int32)
Declaration
DataPoint3D IList<DataPoint3D>.get_Item(int index)
Parameters
System.Int32
index
|
Returns
DataPoint3D
|
Implements
IList<DataPoint3D>.IndexOf(DataPoint3D)
Declaration
int IList<DataPoint3D>.IndexOf(DataPoint3D item)
Parameters
DataPoint3D
item
|
Returns
System.Int32
|
Implements
IList<DataPoint3D>.Insert(Int32, DataPoint3D)
Declaration
void IList<DataPoint3D>.Insert(int index, DataPoint3D item)
Parameters
System.Int32
index
|
DataPoint3D
item
|
Implements
IList<DataPoint3D>.Item[Int32]
Declaration
DataPoint3D IList<DataPoint3D>.this[] { get; set; }
Parameters
System.Int32
index
|
Returns
DataPoint3D
|
Implements
IList<DataPoint3D>.RemoveAt(Int32)
Declaration
void IList<DataPoint3D>.RemoveAt(int index)
Parameters
System.Int32
index
|
Implements
IList<DataPoint3D>.set_Item(Int32, DataPoint3D)
Declaration
void IList<DataPoint3D>.set_Item(int index, DataPoint3D value)
Parameters
System.Int32
index
|
DataPoint3D
value
|
Implements
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|