[]
Represents a collection of axes.
public class PolarRadiusAxisCollection : IList, ICollection, IList<PolarRadiusAxis>, ICollection<PolarRadiusAxis>, IEnumerable<PolarRadiusAxis>, IEnumerable, IXmlSerializable
Public Class PolarRadiusAxisCollection
Implements IList, ICollection, IList(Of PolarRadiusAxis), ICollection(Of PolarRadiusAxis), IEnumerable(Of PolarRadiusAxis), IEnumerable, IXmlSerializable
| Name | Description |
|---|---|
| Count | Gets the number of axes in the collection. |
| this[int] | Gets the axis at the specified index. |
| Name | Description |
|---|---|
| Add(PolarRadiusAxis) | Adds an axis to the collection. |
| AddRange(PolarRadiusAxis[]) | Adds an array of axes to the collection. |
| Clear() | Removes all axes from the collection. |
| Contains(PolarRadiusAxis) | Determines whether the collection contains a specific axis. |
| CopyTo(PolarRadiusAxis[], 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(PolarRadiusAxis) | Determines the index of the axis in the collection. |
| Insert(int, PolarRadiusAxis) | Inserts an axis into the collection at the specified index. |
| InsertRange(int, PolarRadiusAxis[]) | Inserts an array axes into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| ReadXml(XmlReader) | Generates an object from its XML representation. |
| Remove(PolarRadiusAxis) | 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. |