 | PdfiumFORM_OnChar Method |
You can call this member function when a keystroke translates to a nonsystem character.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FORM_OnChar(
IntPtr form_handle,
IntPtr page,
int nChar,
KeyboardModifiers modifier
)
Public Shared Function FORM_OnChar (
form_handle As IntPtr,
page As IntPtr,
nChar As Integer,
modifier As KeyboardModifiers
) As Boolean
public:
static bool FORM_OnChar(
IntPtr form_handle,
IntPtr page,
int nChar,
KeyboardModifiers modifier
)
static member FORM_OnChar :
form_handle : IntPtr *
page : IntPtr *
nChar : int *
modifier : KeyboardModifiers -> bool
public static boolean FORM_OnChar(
IntPtr form_handle,
IntPtr page,
int nChar,
KeyboardModifiers modifier
)
Patagames.Pdf.Pdfium.FORM_OnChar = function(form_handle, page, nChar, modifier);
Parameters
- form_handle IntPtr
- Handle to the form fill module. Returned by {0} Overload.
- page IntPtr
- Handle to the page. Returned by FPDF_LoadPage(IntPtr, Int32) function.
- nChar Int32
- The character code value of the key.
- modifier KeyboardModifiers
- Contains the scan code, key-transition code, previous key state, and context code.
Return Value
BooleanTRUE indicates success; otherwise false.
See Also