C# Class MouseKeyboardActivityMonitor.KeyPressEventArgsExt

Provides extended data for the event.
Inheritance: System.Windows.Forms.KeyPressEventArgs
Mostra file Open project: katopz/oskz-vcsharp Class Usage Examples

Public Methods

Method Description
KeyPressEventArgsExt ( char keyChar ) : System

Initializes a new instance of the class.

Private Methods

Method Description
FromRawData ( int wParam, IntPtr lParam, bool isGlobal ) : KeyPressEventArgsExt

Creates KeyPressEventArgsExt from Windows Message parameters.

FromRawDataApp ( int wParam, IntPtr lParam ) : KeyPressEventArgsExt

Creates KeyPressEventArgsExt from Windows Message parameters, based upon a local application hook.

FromRawDataGlobal ( int wParam, IntPtr lParam ) : KeyPressEventArgsExt

Creates KeyPressEventArgsExt from Windows Message parameters, based upon a system-wide hook.

KeyPressEventArgsExt ( char keyChar, int timestamp ) : System

Method Details

KeyPressEventArgsExt() public method

Initializes a new instance of the class.
public KeyPressEventArgsExt ( char keyChar ) : System
keyChar char Character corresponding to the key pressed. 0 char if represens a system or functional non char key.
return System