Table of Contents

Enum GlobalKeyboardHook.KeyboardState

Namespace
VisioForge.Core.UI.WinForms.Dialogs
Assembly
VisioForge.Core.dll

Represents the different states of keyboard events that can be captured by the hook. These values correspond to Windows keyboard message identifiers.

public enum GlobalKeyboardHook.KeyboardState

Fields

KeyDown = 256

The key down.

KeyUp = 257

The key up.

SysKeyDown = 260

The system key down.

SysKeyUp = 261

The system key up.

Remarks

These enumeration values match the Windows message constants:

  • WM_KEYDOWN (0x0100) - Key pressed down
  • WM_KEYUP (0x0101) - Key released
  • WM_SYSKEYDOWN (0x0104) - System key pressed (Alt combinations)
  • WM_SYSKEYUP (0x0105) - System key released