C# Class Evbpc.Framework.Windows.Forms.KeyPressEventArgs

Provides data for the Control.KeyPress event.
http://msdn.microsoft.com/en-us/library/system.windows.forms.KeyPressEventArgs(v=vs.110).aspx
Inheritance: System.EventArgs
Show file Open project: EBrown8534/Framework Class Usage Examples

Public Methods

Method Description
KeyPressEventArgs ( char keyChar ) : System

Initializes a new instance of the KeyPressEventArgs class.

http://msdn.microsoft.com/en-us/library/system.windows.forms.keypresseventargs.keypresseventargs(v=vs.110).aspx

Method Details

KeyPressEventArgs() public method

Initializes a new instance of the KeyPressEventArgs class.
http://msdn.microsoft.com/en-us/library/system.windows.forms.keypresseventargs.keypresseventargs(v=vs.110).aspx
public KeyPressEventArgs ( char keyChar ) : System
keyChar char The ASCII character corresponding to the key the user pressed.
return System