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

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

Public Methods

Method Description
KeyEventArgs ( Keys keyData ) : System

Initializes a new instance of the KeyEventArgs class.

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

Method Details

KeyEventArgs() public method

Initializes a new instance of the KeyEventArgs class.
https://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.keyeventargs(v=vs.110).aspx
public KeyEventArgs ( Keys keyData ) : System
keyData Keys A representing the key that was pressed, combined with any modifier flags that indicate which CTRL, SHIFT, and ALT keys were pressed at the same time. Possible values are obtained be applying the bitwise OR (|) operator to constants from the Keys enumeration.
return System