Enum KeyModifier
Represents keyboard keys that can be pressed and held down during the execution of a method, such as the SendKeys method.
[Flags]
public enum KeyModifier
Fields
Alt = 8An Alt key.
Ctrl = 1A control key.
LeftAlt = 16The left Alt key.
LeftCtrl = 2The left control key.
LeftShift = 128The left Shift key.
LeftWindowsLogo = 1024The left Windows key.
None = 0No key is pressed.
RightAlt = 32The right Alt key.
RightCtrl = 4The right control key.
RightShift = 256The right Shift key.
RightWindowsLogo = 2048The right Windows key.
Shift = 64A Shift key.
WindowsLogo = 512A Windows key.