 | BeforeFormResetCallback Delegate |
This delegate invoked by SDK before forms is reseted.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate int BeforeFormResetCallback(
FPDF_FORMFILLNOTIFY pThis,
IntPtr intForm
)
Public Delegate Function BeforeFormResetCallback (
pThis As FPDF_FORMFILLNOTIFY,
intForm As IntPtr
) As Integer
public delegate int BeforeFormResetCallback(
FPDF_FORMFILLNOTIFY^ pThis,
IntPtr intForm
)
type BeforeFormResetCallback =
delegate of
pThis : FPDF_FORMFILLNOTIFY *
intForm : IntPtr -> int
/** @delegate */
public delegate int BeforeFormResetCallback(
FPDF_FORMFILLNOTIFY pThis,
IntPtr intForm
)
function(pThis, intForm);
Parameters
- pThis FPDF_FORMFILLNOTIFY
- Pointer to the interface structure itself
- intForm IntPtr
- Handle to Interactive Forms object
Return Value
Int320 to accept changes, -1 to cancel
Remarks
See Also