Enum ModifierKeys
The ModifierKeys enumeration describes a set of common keys used to modify other input operations.
[TypeConverter("Alternet.UI.ModifierKeysConverter")]
[Flags]
public enum ModifierKeys
- Extension Methods
Fields
Alt = 1The "Alt" key on Windows and Linux or "Option" key on macOS.
AltShift = Alt | ShiftBoth Alt and Shift modifiers are pressed.
Control = 2A "Control" key on Windows and Linux or "Command" key on macOS.
ControlAlt = Alt | ControlBoth Control and Alt modifiers are pressed.
ControlShift = Control | ShiftBoth Control and Shift modifiers are pressed.
ControlShiftAlt = Alt | ControlShiftControl+Shift+Alt pressed.
None = 0No modifiers are pressed.
Shift = 4A shift key.
Windows = 8The Microsoft "Windows" key on Windows or "Control" key on macOS or "Meta" key on Linux.
WindowsShift = Shift | WindowsBoth Windows and Shift modifiers are pressed.
Remarks
This enumeration supports a bitwise combination of its member values.