[]
Represents the collection of status bar elements.
public class FpStatusBarElementCollection : ICollection<IFpStatusBarElement>, IEnumerable<IFpStatusBarElement>, IEnumerable
Public Class FpStatusBarElementCollection
Implements ICollection(Of IFpStatusBarElement), IEnumerable(Of IFpStatusBarElement), IEnumerable
| Name | Description |
|---|---|
| FpStatusBarElementCollection() | Creates a new collection of values. |
| Name | Description |
|---|---|
| Count | Gets the number of values in the collection. |
| IsReadOnly | Gets a value indicating whether the FpStatusBarElementCollection is read-only. |
| this[int] | Gets the element at the specified index. |
| Name | Description |
|---|---|
| Add(IFpStatusBarElement) | Adds a value to the collection. |
| AddRange(IFpStatusBarElement[]) | Adds the elements of the specified collection to the end of the collection |
| Clear() | Removes all values from the collection. |
| Contains(IFpStatusBarElement) | Determines whether the collection contains a specific value. |
| CopyTo(IFpStatusBarElement[], int) | Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array. |
| GetEnumerator() | Gets an enumerator that iterates through the collection. |
| IndexOf(IFpStatusBarElement) | Determines the index of the value in the collection. |
| Insert(int, IFpStatusBarElement) | Inserts a value into the collection at the specified index. |
| Remove(IFpStatusBarElement) | Removes a value from the collection. |
| RemoveAt(int) | Removes a value from the collection at the specified index. |