[]
Removes a Page object from the PageCollection at the specified index.
public void RemoveAt(int index)
| Type | Name | Description |
|---|---|---|
| int | index |
PageCollection collection = new PageCollection();
collection.Add(new Page());
collection.RemoveAt(0);