 | PdfFormsOnAfterValueChangeCallback Method |
This method invoked by SDK after field is changed.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxprotected virtual void OnAfterValueChangeCallback(
FPDF_FORMFILLNOTIFY pThis,
IntPtr field
)
Protected Overridable Sub OnAfterValueChangeCallback (
pThis As FPDF_FORMFILLNOTIFY,
field As IntPtr
)
protected:
virtual void OnAfterValueChangeCallback(
FPDF_FORMFILLNOTIFY^ pThis,
IntPtr field
)
abstract OnAfterValueChangeCallback :
pThis : FPDF_FORMFILLNOTIFY *
field : IntPtr -> unit
override OnAfterValueChangeCallback :
pThis : FPDF_FORMFILLNOTIFY *
field : IntPtr -> unit
protected void OnAfterValueChangeCallback(
FPDF_FORMFILLNOTIFY pThis,
IntPtr field
)
function OnAfterValueChangeCallback(pThis, field);
Parameters
- pThis FPDF_FORMFILLNOTIFY
- Pointer to the interface structure itself
- field IntPtr
- Handle to Field object
RemarksMethod is called by the text boxes and the combo boxes when they lose focus.
See Also