Click or drag to resize

FFI_SetTextFieldFocusCallback Delegate

This method will be called when a text field is getting or losing a focus.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public delegate void FFI_SetTextFieldFocusCallback(
	FPDF_FORMFILLINFO pThis,
	string value,
	int valueLen,
	bool is_focus,
	IntPtr field
)

Parameters

pThis  FPDF_FORMFILLINFO
Pointer to the interface structure itself.
value  String
The string value of the form field, in UTF-16LE format.
valueLen  Int32
The length of the string value, number of characters (not bytes).
is_focus  Boolean
True if the form field is getting a focus, False for losing a focus.
field  IntPtr
The field that lost/received input focus.
Remarks
required: No. Currently,only support text field and combobox field.
See Also