Enum KeyEventFlags
This enum specifies various aspects of a keystroke. This member can be certain combinations of the following values. See KEYBDINPUT structure
Namespace: Dapplo.Windows.Input.Enums
Assembly: Dapplo.Windows.Input.dll
Syntax
public enum KeyEventFlags : uint
Fields
Name | Description |
---|---|
ExtendedKey | If specified, the scan code was preceded by a prefix byte that has the value 0xE0 (224). |
KeyUp | If specified, the key is being released. If not specified, the key is being pressed. |
Scancode | If specified, wScan identifies the key and VirtualKeyCode is ignored. |
Unicode | If specified, the system synthesizes a VK_PACKET keystroke. The VirtualKeyCode parameter must be zero. This flag can only be combined with the KeyUp flag. For more information, see the Remarks section. |