[]
Inserts a new Page into the PageCollection at the specified location.
public void Insert(int index, Page value)
Type | Name | Description |
---|---|---|
int | index | A zero-based int index indicating the position at which to insert the Page object. |
Page | value | A Page object to insert. |
PageCollection collection = new PageCollection();
collection.Insert(0, new Page());