 | FFI_DoGoToActionCallback Delegate |
This action changes the view to a specified destination.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate void FFI_DoGoToActionCallback(
FPDF_FORMFILLINFO pThis,
int nPageIndex,
ZoomTypes zoomMode,
float[] fPosArray,
int sizeofArray
)
Public Delegate Sub FFI_DoGoToActionCallback (
pThis As FPDF_FORMFILLINFO,
nPageIndex As Integer,
zoomMode As ZoomTypes,
fPosArray As Single(),
sizeofArray As Integer
)
public delegate void FFI_DoGoToActionCallback(
FPDF_FORMFILLINFO^ pThis,
int nPageIndex,
ZoomTypes zoomMode,
array<float>^ fPosArray,
int sizeofArray
)
type FFI_DoGoToActionCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
nPageIndex : int *
zoomMode : ZoomTypes *
fPosArray : float32[] *
sizeofArray : int -> unit
/** @delegate */
public delegate void FFI_DoGoToActionCallback(
FPDF_FORMFILLINFO pThis,
int nPageIndex,
ZoomTypes zoomMode,
float[] fPosArray,
int sizeofArray
)
function(pThis, nPageIndex, zoomMode, fPosArray, sizeofArray);
Parameters
- pThis FPDF_FORMFILLINFO
- Pointer to the interface structure itself.
- nPageIndex Int32
- The index of the PDF page.
- zoomMode ZoomTypes
- The zoom mode for viewing page.See ZoomTypes.
- fPosArray Single
- The float array which carries the position info
- sizeofArray Int32
- The size of float array.
Remarks
See Also