| ModifierKeys Enumeration |
Describes the pressed modifier keys.
Namespace: DigitalRune.Game.InputAssembly: DigitalRune.Game.Input (in DigitalRune.Game.Input.dll) Version: 1.8.0.0 (1.8.0.14467)
Syntax [FlagsAttribute]
public enum ModifierKeys
<FlagsAttribute>
Public Enumeration ModifierKeys
[FlagsAttribute]
public enum class ModifierKeys
[<FlagsAttribute>]
type ModifierKeys
Members
| Member name | Value | Description |
---|
| None | 0 |
No modifier key is pressed.
|
| Alt | 1 |
Alt is pressed.
|
| Control | 2 |
Control is pressed.
|
| Shift | 4 |
Shift is pressed.
|
| Apple | 8 |
Apple key is pressed.
|
| Windows | 8 |
Windows key is pressed.
|
| ChatPadGreen | 16 |
ChatPadGreen is pressed.
|
| ChatPadOrange | 32 |
ChatPadOrange is pressed.
|
| ShiftAlt | 5 |
Shift and Alt are pressed.
|
| ControlAlt | 3 |
Control and Alt are pressed.
|
| ControlShift | 6 |
Control and Shift are pressed.
|
| ControlShiftAlt | 7 |
Control, Shift and Alt are pressed.
|
See Also