[]
Represents a collection of ChartObject objects.
public abstract class ChartObjectCollection<T> : ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable, IC1SerializableCollection where T : ChartObject
| Name | Description |
|---|---|
| T | The type of elements in the collection. |
| Name | Description |
|---|---|
| ChartObjectCollection() |
| Name | Description |
|---|---|
| Count | Gets the number of elements in the collection. |
| this[int] | Gets the element at the specified index. |
| Name | Description |
|---|---|
| AssignFrom(ChartObjectCollection<T>) | Assigns (copies) items from another ChartObjectCollection to the current collection. |
| Contains(T) | Determines whether the collection contains a specific item. |
| CopyTo(T[], int) | Copies the elements of the collection to an Array, starting at a particular array index. |
| IndexOf(T) | Gets the index of the element. |
| InternalAdd(T) | Adds an item to the ChartObjectCollection<T>. |
| InternalClear() | Removes all items from the ChartObjectCollection<T>. |
| InternalInsert(int, T) | Inserts an item to the ChartObjectCollection<T> at the specified index. |
| InternalRemoveAt(int) | Removes the ChartObjectCollection<T> item at the specified index. |
| Name | Description |
|---|---|
| CollectionChanged | Occurs when the collection or its item has changed. |