Click or drag to resize

PdfiumFPDF_StartLoadPage Method

Start to 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_StartLoadPage(
	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
The page must be continue load using FPDF_ContinueLoadPage(IntPtr, IFSDK_PAUSE) function. Loaded page can be closed by FPDF_ClosePage(IntPtr).
See Also