[]
Represents a collection of fills.
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
| 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. |
| Name | Description |
|---|---|
| Count | Gets the number of fills in the collection. |
| this[int] | Gets or sets the fill at the specified index. |
| 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. |
| SetFill(int, Fill) | Gets or sets the fill at the specified index. |
| Name | Description |
|---|---|
| Changed | Occurs when the collection is changed. |