 | FFI_GetCurrentPageCallback Delegate |
This method receives the current page pointer.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic delegate IntPtr FFI_GetCurrentPageCallback(
FPDF_FORMFILLINFO pThis,
IntPtr document
)
Public Delegate Function FFI_GetCurrentPageCallback (
pThis As FPDF_FORMFILLINFO,
document As IntPtr
) As IntPtr
public delegate IntPtr FFI_GetCurrentPageCallback(
FPDF_FORMFILLINFO^ pThis,
IntPtr document
)
type FFI_GetCurrentPageCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
document : IntPtr -> IntPtr/** @delegate */
public delegate IntPtr FFI_GetCurrentPageCallback(
FPDF_FORMFILLINFO pThis,
IntPtr document
)
function(pThis, document);
Parameters
- pThis FPDF_FORMFILLINFO
- Pointer to the interface structure itself.
- document IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String) function.
Return Value
IntPtrHandle to the page. Returned by
FPDF_LoadPage(IntPtr, Int32) function.
RemarksRequired: Yes.
See Also