 | FFI_GetRotationCallback Delegate |
This method receives currently rotation of the page view.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic delegate PageRotate FFI_GetRotationCallback(
FPDF_FORMFILLINFO pThis,
IntPtr page
)
Public Delegate Function FFI_GetRotationCallback (
pThis As FPDF_FORMFILLINFO,
page As IntPtr
) As PageRotate
public delegate PageRotate FFI_GetRotationCallback(
FPDF_FORMFILLINFO^ pThis,
IntPtr page
)
type FFI_GetRotationCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
page : IntPtr -> PageRotate/** @delegate */
public delegate PageRotate FFI_GetRotationCallback(
FPDF_FORMFILLINFO pThis,
IntPtr page
)
Parameters
- pThis FPDF_FORMFILLINFO
- Pointer to the interface structure itself.
- page IntPtr
- Handle to page. Returned by FPDF_LoadPage(IntPtr, Int32) function.
Return Value
PageRotateThe page rotation. Should be 0(0 degree),1(90 degree),2(180 degree),3(270 degree), in a clockwise direction.
RemarksRequired: Yes.
See Also