MouseButton Enumeration

Specifies a mouse button.

Definition

Namespace: DevCase.Core.IO.Devices.Input
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum MouseButton

Members

LeftButtonDown 0 Hold the left button.
LeftButtonUp 1 Release the left button.
LeftButtonPress 2 Press the left button. ( Hold + Release )
RightButtonDown 3 Hold the right button.
RightButtonUp 4 Release the right button.
RightButtonPress 5 Press the Right button. ( Hold + Release )
MiddleButtonDown 6 Hold the middle button.
MiddleButtonUp 7 Release the middle button.
MiddleButtonPress 8 Press the Middle button. ( Hold + Release )
WheelDown 9 Move the vertical wheel mouse down.
WheelUp 10 Move the vertical wheel mouse up.
WheelLeft 11 Move the horizontal wheel mouse left.
WheelRight 12 Move the horizontal wheel mouse right.

See Also