KeyEvent.ASCIIChar Property | |
A numeric value representing the normal ASCII code for the key that caused this KeyEvent.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY ASCIIChar AS DWORD GET
public virtual uint ASCIIChar { get; }
Request Example
View SourceProperty Value
Type:
DWordA numeric value representing the normal ASCII code for the key that caused this KeyEvent.
Remarks
A numeric value representing the normal ASCII code for the key that caused this KeyEvent. (This includes all printable characters, as well as the Control key combinations from Ctrl+A to Ctrl+Z).
This value is NIL if a non-printable and non-Control key was pressed—you should then call KeyEvent:KeyCode() to examine the key. (Keys that generate NIL include function keys, editing keys, and the Direction keys.)
See Also