PdfPageCollectionPage Method |
Get the document page with the given page number (1 based index).
Namespace:
RadPdf.Data.Document.Pages
Assembly:
RadPdf (in RadPdf.dll) Version: 3.48.0.0 (3.48.0.0)
Syntax public PdfPage Page(
int number
)
Public Function Page (
number As Integer
) As PdfPage
Parameters
- number
- Type: SystemInt32
Document page number. 1 is the first page in a document.
Return Value
Type:
PdfPageA
PdfPage object representing a document page.
Remarks If page number is invalid or not found,
null will be returned.
Use
PageCount to determine the number of pages in a document
See Also