Class GlobalKeyboardHookEventArgs
Class GlobalKeyboardHookEventArgs.
Inherited Members
Namespace: VisioForge.Core.UI.WinForms.Dialogs
Assembly: VisioForge.Core.dll
Syntax
public class GlobalKeyboardHookEventArgs : HandledEventArgs
Constructors
GlobalKeyboardHookEventArgs(LowLevelKeyboardInputEvent, KeyboardState)
Initializes a new instance of the GlobalKeyboardHookEventArgs class.
Declaration
public GlobalKeyboardHookEventArgs(GlobalKeyboardHook.LowLevelKeyboardInputEvent keyboardData, GlobalKeyboardHook.KeyboardState keyboardState)
Parameters
| Type | Name | Description |
|---|---|---|
| GlobalKeyboardHook.LowLevelKeyboardInputEvent | keyboardData | The keyboard data. |
| GlobalKeyboardHook.KeyboardState | keyboardState | State of the keyboard. |
Properties
Ctrl
Gets or sets a value indicating whether Ctrl is pressed.
Declaration
public bool Ctrl { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
KeyboardData
Gets the keyboard data.
Declaration
public GlobalKeyboardHook.LowLevelKeyboardInputEvent KeyboardData { get; }
Property Value
| Type | Description |
|---|---|
| GlobalKeyboardHook.LowLevelKeyboardInputEvent | The keyboard data. |
KeyboardState
Gets the state of the keyboard.
Declaration
public GlobalKeyboardHook.KeyboardState KeyboardState { get; }
Property Value
| Type | Description |
|---|---|
| GlobalKeyboardHook.KeyboardState | The state of the keyboard. |
Shift
Gets or sets a value indicating whether Shift is pressed.
Declaration
public bool Shift { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|