 | PdfiumFPDF_StartLoadPage Method |
Start to load a page inside a document.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDF_StartLoadPage(
IntPtr document,
int page_index
)
Public Shared Function FPDF_StartLoadPage (
document As IntPtr,
page_index As Integer
) As IntPtr
public:
static IntPtr FPDF_StartLoadPage(
IntPtr document,
int page_index
)
static member FPDF_StartLoadPage :
document : IntPtr *
page_index : int -> IntPtr
public static IntPtr FPDF_StartLoadPage(
IntPtr document,
int page_index
)
Patagames.Pdf.Pdfium.FPDF_StartLoadPage = function(document, 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
IntPtrA handle to the loaded page. If failed, IntPtr.Zero is returned.
Remarks
See Also