C# Class OpenTK.KeyPressEventArgs

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.
Inheritance: System.EventArgs
Mostra file Open project: prepare/HTML-Renderer Class Usage Examples

Public Methods

Method Description
KeyPressEventArgs ( char keyChar ) : System

Constructs a new instance.

Method Details

KeyPressEventArgs() public method

Constructs a new instance.
public KeyPressEventArgs ( char keyChar ) : System
keyChar char The ASCII character that was typed.
return System