Click or drag to resize

BeforeValueChangeCallback Delegate

This delegate invoked by SDK before field is changed.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate int BeforeValueChangeCallback(
	FPDF_FORMFILLNOTIFY pThis,
	IntPtr field,
	string value
)

Parameters

pThis  FPDF_FORMFILLNOTIFY
Pointer to the interface structure itself
field  IntPtr
Handle to Field object
value  String
Field's value

Return Value

Int32
0 to accept changes, -1 to cancel
Remarks
Required: Yes.

Delegate is called by the text boxes and the combo boxes when they lose focus.

See Also