[]
Represents a ItemTemplateCollection class to store ItemTemplate.
[ListBindable(false)]
public class ItemTemplateCollection : IList, ICollection, IEnumerable
<ListBindable(False)>
Public Class ItemTemplateCollection
Implements IList, ICollection, IEnumerable
Name | Description |
---|---|
ItemTemplateCollection() |
Name | Description |
---|---|
Count | Gets count of the collection. |
this[int] | Gets or sets the item at the specified position. |
Name | Description |
---|---|
Add(ItemTemplate) | Adds an item to the collection. |
Clear() | Clears all the items in the collection. |
Contains(ItemTemplate) | Determines whether the collection contains specified item. |
CopyTo(ItemTemplate[], int) | Copies the elements of the ICollection to an Array, starting at a particular Array index. |
GetEnumerator() | Gets an enumerator that iterates through the collection. |
IndexOf(ItemTemplate) | Gets the index of the item. |
Insert(int, ItemTemplate) | Inserts an item to the collection at the specified position |
Remove(ItemTemplate) | Deletes the specific item from the collection. |
RemoveAt(int) | Remove the item at specific position from the collection. |