Table of Contents

Enum KeyModifiers

Namespace
Retro.Crt.Input
Assembly
Retro.Crt.dll

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 = 0
Shift = 1
Alt = 2
Ctrl = 4
Meta = 8