[]
Represents a collection of markers.
public class MarkerCollection : IList, ICollection, IList<Marker>, ICollection<Marker>, IEnumerable<Marker>, IEnumerable, ICloneable
Public Class MarkerCollection
Implements IList, ICollection, IList(Of Marker), ICollection(Of Marker), IEnumerable(Of Marker), IEnumerable, ICloneable
| Name | Description |
|---|---|
| MarkerCollection() | Creates a new collection of markers. |
| MarkerCollection(MarkerCollection) | Creates a new collection of markers that is a copy of the specified collection of markers. |
| Name | Description |
|---|---|
| Count | Gets the number of markers in the collection. |
| this[int] | Gets or sets the marker at the specified index. |
| Name | Description |
|---|---|
| Add(Marker) | Adds a marker to the collection. |
| AddRange(Marker[]) | Adds an array of markers to the collection. |
| Clear() | Removes all markers from the collection. |
| Clone() | Creates a new collection that is a copy of this collection. |
| Contains(Marker) | Determines whether the collection contains a specific marker. |
| CopyTo(Marker[], int) | Copies the markers in the collection to an array, starting at the specified array index. |
| GetEnumerator() | Gets an enumerator that iterates through the collection. |
| IndexOf(Marker) | Determines the index of the marker in the collection. |
| Insert(int, Marker) | Inserts a marker into the collection at the specified index. |
| InsertRange(int, Marker[]) | Inserts an array of markers into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| Remove(Marker) | Removes a marker from the collection. |
| RemoveAt(int) | Removes a marker from the collection at the specified index. |
| SetMarker(int, Marker) | Gets or sets the marker at the specified index. |
| Name | Description |
|---|---|
| Changed | Occurs when the collection is changed. |