[]
Gets or sets a specific Page object in the PageCollection by position.
public Page this[int index] { get; set; }
Type | Name | Description |
---|---|---|
int | index |
Type | Description |
---|---|
Page | A Page object at the specified position. |
PageCollection collection = new PageCollection();
collection.Add(new Page());
Page page = collection[0];