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