Enum MouseFlags
Mouse flags reported in MouseEvent.
[Flags]
public enum MouseFlags
Fields
AllEvents = 134217727Mask that captures all the events.
Button1Clicked = 4The first mouse button was clicked (press+release).
Button1DoubleClicked = 8The first mouse button was double-clicked.
Button1Pressed = 2The first mouse button was pressed.
Button1Released = 1The first mouse button was released.
Button1TripleClicked = 16The first mouse button was triple-clicked.
Button2Clicked = 256The second mouse button was clicked (press+release).
Button2DoubleClicked = 512The second mouse button was double-clicked.
Button2Pressed = 128The second mouse button was pressed.
Button2Released = 64The second mouse button was released.
Button2TripleClicked = 1024The second mouse button was triple-clicked.
Button3Clicked = 16384The third mouse button was clicked (press+release).
Button3DoubleClicked = 32768The third mouse button was double-clicked.
Button3Pressed = 8192The third mouse button was pressed.
Button3Released = 4096The third mouse button was released.
Button3TripleClicked = 65536The third mouse button was triple-clicked.
Button4Clicked = 1048576The fourth button was clicked (press+release).
Button4DoubleClicked = 2097152The fourth button was double-clicked.
Button4Pressed = 524288The fourth mouse button was pressed.
Button4Released = 262144The fourth mouse button was released.
Button4TripleClicked = 4194304The fourth button was triple-clicked.
ButtonAlt = 67108864Flag: the alt key was pressed when the mouse button took place.
ButtonCtrl = 16777216Flag: the ctrl key was pressed when the mouse button took place.
ButtonShift = 33554432Flag: the shift key was pressed when the mouse button took place.
ReportMousePosition = 134217728The mouse position is being reported in this event.
WheeledDown = 536870912Vertical button wheeled down.
WheeledLeft = ButtonCtrl | WheeledUpVertical button wheeled up while pressing ButtonCtrl.
WheeledRight = ButtonCtrl | WheeledDownVertical button wheeled down while pressing ButtonCtrl.
WheeledUp = 268435456Vertical button wheeled up.
Remarks
They just happen to map to the ncurses ones.