Enum KeyEventType
Describes the type of keyboard event: press, release, or repeat.
public enum KeyEventType
Fields
Press = 1A key was pressed. This is the default and matches legacy Key behavior.
Release = 3A key was released.
Repeat = 2A key that was previously pressed is being held down and the terminal is sending repeat events.