 | FFI_GetPageCallback Delegate |
This method receives the page pointer associated with a specified page index.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate IntPtr FFI_GetPageCallback(
FPDF_FORMFILLINFO pThis,
IntPtr document,
int nPageIndex
)
Public Delegate Function FFI_GetPageCallback (
pThis As FPDF_FORMFILLINFO,
document As IntPtr,
nPageIndex As Integer
) As IntPtr
public delegate IntPtr FFI_GetPageCallback(
FPDF_FORMFILLINFO^ pThis,
IntPtr document,
int nPageIndex
)
type FFI_GetPageCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
document : IntPtr *
nPageIndex : int -> IntPtr
/** @delegate */
public delegate IntPtr FFI_GetPageCallback(
FPDF_FORMFILLINFO pThis,
IntPtr document,
int nPageIndex
)
function(pThis, document, nPageIndex);
Parameters
- pThis FPDF_FORMFILLINFO
- Pointer to the interface structure itself.
- document IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String) function.
- nPageIndex Int32
- Index number of the page. 0 for the first page.
Return Value
IntPtrHandle to the page. Returned by
FPDF_LoadPage(IntPtr, Int32) function.
RemarksRequired: Yes. In some cases, the document-level JavaScript action may refer to a page which hadn't been loaded yet.
To successfully run the javascript action, implementation need to load the page for SDK.
See Also