Enum KeyModifiers
Modifier keys held while a key was generated. Encodes the standard
xterm modifier byte (1 + (Shift?1:0) + (Alt?2:0) + (Ctrl?4:0))
after the -1 normalization, plus a flag for the rare Meta /
Super key reported by some terminals.
[Flags]
public enum KeyModifiers : byte
Fields
None = 0Shift = 1Alt = 2Ctrl = 4Meta = 8