Enum MouseEventKind
What the user did with the mouse. Move is reported in any-event tracking modes, Drag in motion-while-pressed modes; both depend on which mouse mode the terminal is in.
public enum MouseEventKind : byte
Fields
Press = 0Release = 1Move = 2Drag = 3Wheel = 4