[]
Represents a collection of CommonItem objects.
[ListBindable(false)]
public class CommonItemCollection : CollectionBase, IList, ICollection, IEnumerable
| Name | Description |
|---|---|
| ClearAndDispose() | Removes all common items from the collection, then disposes the items. |
| Contains(string) | Determines whether this collection contains a CommonItem with the specified name. |
| IndexOf(string) | Determines index of the first CommonItem with the specified name in the collection. |
| Move(int, int) | Moves the item with given index (fromIndex) to the new position (toIndex). |
| OnClear() | Performs additional custom processes when clearing the contents of the CommonItemCollection instance. |
| OnClearComplete() | Performs additional custom processes after clearing the contents of the CommonItemCollection instance. |
| OnInsertComplete(int, object) | Performs additional custom processes after inserting a CommonItem into the CommonItemCollection instance. |
| OnRemoveComplete(int, object) | Performs additional custom processes after removing a CommonItem from the CommonItemCollection instance. |
| OnSetComplete(int, object, object) | Performs additional custom processes after setting a CommonItem in the CommonItemCollection instance. |