Click or drag to resize

PdfiumFPDF_LoadPage Method

Load a page inside a document.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static IntPtr FPDF_LoadPage(
	IntPtr document,
	int page_index
)

Parameters

document  IntPtr
Handle to document. Returned by FPDF_LoadDocument(String, String) function.
page_index  Int32
Index number of the page. 0 for the first page.

Return Value

IntPtr
A handle to the loaded page. If failed, IntPtr.Zero is returned.
Remarks
Loaded page can be rendered to devices using FPDF_RenderPage(IntPtr, IntPtr, Int32, Int32, Int32, Int32, PageRotate, RenderFlags) function. Loaded page can be closed by FPDF_ClosePage(IntPtr).
See Also