[]
        
(Showing Draft Content)

FarPoint.Web.Chart.FillCollection

FillCollection Class

Represents a collection of fills.

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

Constructors

Name Description
FillCollection()

Creates a new collection of fills.

FillCollection(FillCollection)

Creates a new collection of fills that is a copy of the specified collection of fills.

Properties

Name Description
Count

Gets the number of fills in the collection.

this[int]

Gets or sets the fill at the specified index.

Methods

Name Description
Add(Fill)

Adds a fill to the collection.

AddRange(Fill[])

Adds an array of fills to the collection.

Clear()

Removes all fills from the collection.

Clone()

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

Contains(Fill)

Determines whether the collection contains a specific fill.

CopyTo(Fill[], int)

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

GetEnumerator()

Gets an enumerator that iterates through the collection.

IndexOf(Fill)

Determines the index of the fill in the collection.

Insert(int, Fill)

Inserts a fill into the collection at the specified index.

InsertRange(int, Fill[])

Inserts an array of fills into the collection at the specified index.

OnChanged(EventArgs)

Raises the Changed event.

Remove(Fill)

Removes a fill from the collection.

RemoveAt(int)

Removes a fill from the collection at the specified index.

Events

Name Description
Changed

Occurs when the collection is changed.