[]
Defines the SubItemCollection class.
public class SubItemCollection : IList, ICollection, IEnumerable
Public Class SubItemCollection
Implements IList, ICollection, IEnumerable
Name | Description |
---|---|
Count | Gets a value that represents the count of the collection. |
IsReadOnly | Gets a value indicating whether the collection is read only. |
this[int] | Gets or sets the item at the specified position. |
Name | Description |
---|---|
Add(SubItem) | Adds an item to the collection. |
Add(object) | Adds an item to the collection. |
AddRange(SubItem[]) | Add some SubItems of specified collection to the end of the collection. |
AddRange(object[]) | Add some SubItems of specified collection to the end of the collection. |
Clear() | Clears all the items in the collection. |
Contains(SubItem) | Determines whether the collection contains a specific item. |
CopyTo(SubItem[], int) | Copies the elements of the ICollection to an Array, starting at a particular Array index. |
GetEnumerator() | Gets the enumerator. |
IndexOf(SubItem) | Gets the index of the item. |
Insert(int, SubItem) | Inserts an item to the collection at the specified position |
Remove(SubItem) | Deletes a specific item form the collection. |
RemoveAt(int) | Remove the item at specific position form the collection. |
ToArray() | Copies the subItems of the colletion to a new SubItem array. |