Skip to main content
This method is implemented on the client-side. It is called by ABBYY FineReader Engine when a keystroke translates to a character in Image Viewer, Zoom Viewer, Text Editor, Text Validator, or Document Viewer. It delivers to the client the character code, repeat count, and some additional information about the keystroke. With the help of this method it is possible to cancel the operation.

Syntax

C++

C#

Visual Basic .NET

Parameters

Character [in] Contains the character code value of the key. Count [in] Contains the repeat count, the number of times the keystroke is repeated when user holds down the key. Flags [in] Contains the scan code, key-transition code, previous key state, and context code, as shown in the following list: Cancel [out] You may set this variable to TRUE to indicate that the process should be terminated.

Return values

[C++ only] If this method returns a value other than S_OK, it indicates that an error occurred on the client-side, and in this case the value of the Cancel parameter is not taken into account.

Remarks

The client implementation of this method must assure that all exceptions thrown inside the method are caught and handled and no exceptions are propagated outside the method. Propagation of an exception outside the method may lead to unpredictable results (such as program termination).

See also

IInputEvents