ClassTimelineAnnotationCollection
Defines a collection of TimelineAnnotation objects.
Definition
Namespace:Telerik.Windows.Controls.Timeline
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class TimelineAnnotationCollection : Collection<TimelineAnnotation>, IList<TimelineAnnotation>, ICollection<TimelineAnnotation>, IList, ICollection, IReadOnlyList<TimelineAnnotation>, IReadOnlyCollection<TimelineAnnotation>, IEnumerable<TimelineAnnotation>, IEnumerable
Inheritance: objectCollection<TimelineAnnotation>TimelineAnnotationCollection
Implements:
Inherited Members
Methods
ClearItems()
Removes all elements from the Collection<T>.
Declaration
protected override void ClearItems()
Overrides
InsertItem(int, TimelineAnnotation)
Inserts an element into the collection at the specified index.
Declaration
protected override void InsertItem(int index, TimelineAnnotation item)
Parameters
index
The zero-based index at which item should be inserted.
item
The object to insert. The value can be null for reference types.
Overrides
RemoveItem(int)
Removes the element at the specified index of the collection.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The zero-based index of the element to remove.
Overrides
SetItem(int, TimelineAnnotation)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, TimelineAnnotation item)
Parameters
index
The zero-based index of the element to replace.
item
The new value for the element at the specified index. The value can be null for reference types.
Overrides