[]
        
(Showing Draft Content)

FarPoint.Web.Chart.DetachmentCollection

DetachmentCollection Class

Represents a collection of Single values.

Inheritance
DetachmentCollection
Namespace: FarPoint.Web.Chart
Assembly: FarPoint.Web.Chart.dll
Syntax
public class DetachmentCollection : IList, ICollection, IList<float>, ICollection<float>, IEnumerable<float>, IEnumerable, ICloneable
Public Class DetachmentCollection
    Implements IList, ICollection, IList(Of Single), ICollection(Of Single), IEnumerable(Of Single), IEnumerable, ICloneable

Constructors

Name Description
DetachmentCollection()

Creates a new collection of Single values.

DetachmentCollection(DetachmentCollection)

Creates a new collection of Single values that is a copy of the specified collection of Single values.

Properties

Name Description
Count

Gets the number of Single values in the collection.

this[int]

Gets or sets the Single value at the specified index.

Methods

Name Description
Add(float)

Adds a Single value to the collection.

AddRange(float[])

Adds an array of Single values to the collection.

Clear()

Removes all Single values from the collection.

Clone()

Creates a new collection that is a copy of this collection.

Contains(float)

Determines whether the collection contains a specific Single value.

CopyTo(float[], int)

Copies the Single values in the collection to an array, starting at the specified array index.

GetEnumerator()

Gets an enumerator that iterates through the collection.

IndexOf(float)

Determines the index of the Single value in the collection.

Insert(int, float)

Inserts a Single value into the collection at the specified index.

InsertRange(int, float[])

Inserts an array of Single values into the collection at the specified index.

OnChanged(EventArgs)

Raises the Changed event.

Remove(float)

Removes a Single value from the collection.

RemoveAt(int)

Removes a Single value from the collection at the specified index.

Events

Name Description
Changed

Occurs when the collection is changed.