[]
Represents a collection of axes.
public class RadarValueAxisCollection : IList, ICollection, IList<RadarValueAxis>, ICollection<RadarValueAxis>, IEnumerable<RadarValueAxis>, IEnumerable, IXmlSerializable
Public Class RadarValueAxisCollection
Implements IList, ICollection, IList(Of RadarValueAxis), ICollection(Of RadarValueAxis), IEnumerable(Of RadarValueAxis), IEnumerable, IXmlSerializable
Name | Description |
---|---|
Count | Specifies the number of axes in the collection. |
this[int] | Gets the axis at the specified index. |
Name | Description |
---|---|
Add(RadarValueAxis) | Adds an axis to the collection. |
AddRange(RadarValueAxis[]) | Adds an array of axes to the collection. |
Clear() | Removes all axes from the collection. |
Contains(RadarValueAxis) | Determines whether the collection contains a specific axis. |
CopyTo(RadarValueAxis[], int) | Copies the axes in the collection to an array, starting at the specified array index. |
GetEnumerator() | Gets an enumerator that iterates through the collection. |
GetSchema() | This method is reserved and should not be used. |
IndexOf(RadarValueAxis) | Determines the index of the axis in the collection. |
Insert(int, RadarValueAxis) | Inserts an axis into the collection at the specified index. |
InsertRange(int, RadarValueAxis[]) | Inserts an array of axes into the collection at the specified index. |
OnChanged(EventArgs) | Raises the Changed event. |
ReadXml(XmlReader) | Generates an object from its XML representation. |
Remove(RadarValueAxis) | Removes the specified axis from the collection. |
RemoveAt(int) | Removes the axis at the specified index. |
WriteXml(XmlWriter) | Converts an object into its XML representation. |
Name | Description |
---|---|
Changed | Occurs when the collection is changed. |