NativeHotkeyModifiers Enumeration
Specifies a key-modifier to assign for a hotkey.
Namespace: DevCase.Win32.EnumsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum NativeHotkeyModifiers
<FlagsAttribute>
Public Enumeration NativeHotkeyModifiers
Dim instance As NativeHotkeyModifiers
[FlagsAttribute]
public enum class NativeHotkeyModifiers
[<FlagsAttribute>]
type NativeHotkeyModifiers
No code example is currently available or this language may not be supported.
None |
0 |
Specifies any modifier.
|
Alt |
1 |
The ALT keyboard key.
|
Control |
2 |
The CTRL keyboard key.
|
Shift |
4 |
The SHIFT keyboard key.
|
Win |
8 |
The WIN keyboard key.
|
NoRepeat |
16,384 |
Changes the hotkey behavior so that the keyboard auto-repeat does not yield multiple hotkey notifications.
|