[]
Collection of DashboarItem itemContainers
public abstract class DashboardCollection : IEnumerable<DashboardItem>, IEnumerable
| Name | Description |
|---|---|
| DashboardCollection() |
| Name | Description |
|---|---|
| Count | Gets the count of items |
| this[int] | Gets item by index. |
| this[string] | Gets item by id. |
| Items | Gets items of collection |
| Name | Description |
|---|---|
| Add(string, IList) | Creates a new DashboardItem instance and adds it to the end of collection. |
| Clear() | Clears the collection. |
| InsertAfter(string, DashboardItem) | Inserts item after item |
| InsertBefore(string, DashboardItem) | Inserts item before item |
| MoveAfter(string, DashboardItem) | Move the item to the place after the item with the specified ID. |
| MoveBefore(string, DashboardItem) | Move the item to the place before the item with the specified ID. |
| Populate() | Populates collection |
| Remove(string) | Removes item by id. |