[]
Axes collection
[TypeConverter(typeof(StdCollectionTypeConverter))]
public sealed class AxesCollection : CollectionBase, IList, ICollection, IEnumerable, IGraphItem, ICloneable, IDisposable
Name | Description |
---|---|
Capacity | Gets or sets the number of elements that the CollectionBase can contain. |
Count | Gets the number of elements contained in the CollectionBase instance. This property cannot be overridden. |
this[int] | Gets axis. |
this[string] | Gets the AxisBase with the specified axis name. |
Name | Description |
---|---|
Add(AxisBase) | Adds axis to the collection |
AddRange(AxisBase[]) | Adds a set of axes to the current collection |
Clone() | Clones current object |
Contains(AxisBase) | Determines whether the Collection contains the given AxisBase |
Dispose() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
IndexOf(AxisBase) | Returns the index of the first occurrence of a value in the collection. |
Insert(int, AxisBase) | Inserts an to the collection at the specified position
|
OnClearComplete() | Performs additional custom processes after clearing the contents of the CollectionBase instance. |
OnInsert(int, object) | Performs additional custom processes before inserting a new element into the System.Collections.CollectionBase instance. |
OnInsertComplete(int, object) | Performs additional custom processes after inserting a new element into the System.Collections.CollectionBase instance. |
OnRemove(int, object) | Performs additional custom processes when removing an element from the System.Collections.CollectionBase instance. |
OnRemoveComplete(int, object) | Performs additional custom processes after removing an element from the System.Collections.CollectionBase instance. |
OnSet(int, object, object) | Performs additional custom processes before setting a value in the CollectionBase instance. |
OnSetComplete(int, object, object) | Performs additional custom processes after setting a value in the CollectionBase instance. |
Remove(AxisBase) | Removes the first occurrence of a specific object from the collection. |
ToArray() | Gets all axis. |