 | FFI_SetTextFieldFocusCallback Delegate |
This method will be called when a text field is getting or losing a focus.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic delegate void FFI_SetTextFieldFocusCallback(
FPDF_FORMFILLINFO pThis,
string value,
int valueLen,
bool is_focus,
IntPtr field
)
Public Delegate Sub FFI_SetTextFieldFocusCallback (
pThis As FPDF_FORMFILLINFO,
value As String,
valueLen As Integer,
is_focus As Boolean,
field As IntPtr
)
public delegate void FFI_SetTextFieldFocusCallback(
FPDF_FORMFILLINFO^ pThis,
String^ value,
int valueLen,
bool is_focus,
IntPtr field
)
type FFI_SetTextFieldFocusCallback =
delegate of
pThis : FPDF_FORMFILLINFO *
value : string *
valueLen : int *
is_focus : bool *
field : IntPtr -> unit
/** @delegate */
public delegate void FFI_SetTextFieldFocusCallback(
FPDF_FORMFILLINFO pThis,
String value,
int valueLen,
boolean is_focus,
IntPtr field
)
function(pThis, value, valueLen, is_focus, 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.
Remarksrequired: No. Currently,only support text field and combobox field.
See Also