 | BeforeSelectionChangeCallback Delegate |
This delegate invoked by SDK before field's selection is changed.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate int BeforeSelectionChangeCallback(
FPDF_FORMFILLNOTIFY pThis,
IntPtr field,
string value
)
Public Delegate Function BeforeSelectionChangeCallback (
pThis As FPDF_FORMFILLNOTIFY,
field As IntPtr,
value As String
) As Integer
public delegate int BeforeSelectionChangeCallback(
FPDF_FORMFILLNOTIFY^ pThis,
IntPtr field,
String^ value
)
type BeforeSelectionChangeCallback =
delegate of
pThis : FPDF_FORMFILLNOTIFY *
field : IntPtr *
value : string -> int
/** @delegate */
public delegate int BeforeSelectionChangeCallback(
FPDF_FORMFILLNOTIFY pThis,
IntPtr field,
String value
)
function(pThis, field, value);
Parameters
- pThis FPDF_FORMFILLNOTIFY
- Pointer to the interface structure itself
- field IntPtr
- Handle to Field object
- value String
- Field's value
Return Value
Int320 to accept changes, -1 to cancel
RemarksRequired: Yes.
Delegate is called by the list boxes when it lose focus.
See Also