 | FFI_InvalidateCallback Delegate |
Invalidate the client area within the specified rectangle.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate void FFI_InvalidateCallback(
FPDF_FORMFILLINFO pThis,
IntPtr page,
double left,
double top,
double right,
double bottom
)
Public Delegate Sub FFI_InvalidateCallback (
pThis As FPDF_FORMFILLINFO,
page As IntPtr,
left As Double,
top As Double,
right As Double,
bottom As Double
)
public delegate void FFI_InvalidateCallback(
FPDF_FORMFILLINFO^ pThis,
IntPtr page,
double left,
double top,
double right,
double bottom
)
type FFI_InvalidateCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
page : IntPtr *
left : float *
top : float *
right : float *
bottom : float -> unit
/** @delegate */
public delegate void FFI_InvalidateCallback(
FPDF_FORMFILLINFO pThis,
IntPtr page,
double left,
double top,
double right,
double bottom
)
function(pThis, page, left, top, right, bottom);
Parameters
- pThis FPDF_FORMFILLINFO
- Pointer to the interface structure itself.
- page IntPtr
- Handle to the page. Returned by FPDF_LoadPage(IntPtr, Int32) function.
- left Double
- Left position of the client area in PDF page coordinate.
- top Double
- Top position of the client area in PDF page coordinate.
- right Double
- Right position of the client area in PDF page coordinate.
- bottom Double
- Bottom position of the client area in PDF page coordinate.
Remarks
See Also