[]
        
(Showing Draft Content)

FarPoint.Web.Chart.MarkerCollection

MarkerCollection Class

Represents a collection of markers.

Inheritance
MarkerCollection
Namespace: FarPoint.Web.Chart
Assembly: FarPoint.Web.Chart.dll
Syntax
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

Constructors

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.

Properties

Name Description
Count

Gets the number of markers in the collection.

this[int]

Gets or sets the marker at the specified index.

Methods

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.

Events

Name Description
Changed

Occurs when the collection is changed.