[]
Represents a collection of legend areas.
public class LegendAreaCollection : IList, ICollection, IList<LegendArea>, ICollection<LegendArea>, IEnumerable<LegendArea>, IEnumerable, IXmlSerializable
Public Class LegendAreaCollection
Implements IList, ICollection, IList(Of LegendArea), ICollection(Of LegendArea), IEnumerable(Of LegendArea), IEnumerable, IXmlSerializable
Name | Description |
---|---|
Count | Gets the number of legend areas in the collection. |
this[int] | Gets or sets the legend area at the specified index. |
Name | Description |
---|---|
Add(LegendArea) | Adds a legend area to the collection. |
AddRange(LegendArea[]) | Adds an array of legend areas to the collection. |
Clear() | Removes all legend areas from the collection. |
Contains(LegendArea) | Determines whether the collection contains a specific legend area. |
CopyTo(LegendArea[], int) | Copies the legend areas 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(LegendArea) | Determines the index of the legend area in the collection. |
Insert(int, LegendArea) | Inserts a legend area into the collection at the specified index. |
InsertRange(int, LegendArea[]) | Inserts an array of legend areas into the collection at the specified index. |
OnChanged(EventArgs) | Raises the Changed event. |
ReadXml(XmlReader) | Generates an object from its XML representation. |
Remove(LegendArea) | Removes a legend area from the collection. |
RemoveAt(int) | Remove a legend area from the collection at the specified index. |
WriteXml(XmlWriter) | Converts an object into its XML representation. |
Name | Description |
---|---|
Changed | Occurs when the collection is changed. |