[]
Represents the pages of document.
public class C1KeyedList<TKey, TItem> : IList<TItem>, ICollection<TItem>, IEnumerable<TItem>, IEnumerable where TKey : IComparable<TKey> where TItem : IC1KeyedItem<TKey>
| Name | Description |
|---|---|
| TKey | The type of key. |
| TItem | The page item type. |
| Name | Description |
|---|---|
| C1KeyedList() |
| Name | Description |
|---|---|
| Count | Gets the number of elements contained in the C1KeyedList<TKey, TItem>. |
| Name | Description |
|---|---|
| Add(TItem) | Adds the item to document pages. |
| Clear() | Removes all elements from the C1KeyedList<TKey, TItem>. |
| GetByIndex(int) | Gets the page item by specified index. |
| IndexOf(TItem) | Gets the index of the specified page in the document. |
| RemoveAt(int) | Removes the element at the specified index of the C1KeyedList<TKey, TItem>. |
| TryGetValue(TKey, out TItem) | Gets the page by specified key. |