Defines the event arguments for KeyPress events. Instances of this class are cached: KeyPressEventArgs should only be used inside the relevant event, unless manually cloned. More...
Public Member Functions | |
| KeyPressEventArgs (char keyChar) | |
| Constructs a new instance. | |
Properties | |
| char | KeyChar [get, set] |
| Gets a System.Char that defines the ASCII character that was typed. | |
Defines the event arguments for KeyPress events. Instances of this class are cached: KeyPressEventArgs should only be used inside the relevant event, unless manually cloned.
Definition at line 36 of file KeyPressEventArgs.cs.
| OpenTK.KeyPressEventArgs.KeyPressEventArgs | ( | char | keyChar | ) |
Constructs a new instance.
| keyChar | The ASCII character that was typed. |
Definition at line 44 of file KeyPressEventArgs.cs.
00045 { 00046 KeyChar = keyChar; 00047 }
char OpenTK.KeyPressEventArgs.KeyChar [get, set] |
Gets a System.Char that defines the ASCII character that was typed.
Definition at line 53 of file KeyPressEventArgs.cs.
1.6.1