
Gets a page from the collection. In C# this property is the indexer for the PageCollection class.
[C#]
public Page this [int number] { get; }
[Visual Basic]
Public Default ReadOnly Property Item(ByVal number As Integer) As Page
| Parameter | Description | |
| number | Specifies a page number. The first page has the number 1. |
The return value is null, if the page could not be found. Otherwise, it is an object of the type Page.