Gets the page.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Page GetPage(
int page_num
)
Public Function GetPage (
page_num As Integer
) As Page
public:
virtual Page^ GetPage(
[InAttribute] int page_num
) sealed
function GetPage(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;
See Also