Click or drag to resize

PDFDocGetPage Method

Gets the page.

Namespace:  pdftron.PDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public Page GetPage(
	int page_num
)

Parameters

page_num
Type: SystemInt32
- the page number in document's page sequence. Page numbers in document's page sequence are indexed from 1.

Return Value

Type: Page
a Page corresponding to a given page number, or null (invalid page) if the document does not contain the given page number.
Examples
Page page = pdfdoc.GetPage(page_num);
if (page == null) return; //  Page not found
See Also