MouseEventFlags Enumeration

Specifies a mouse motion event.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum MouseEventFlags

Remarks

Members

Move 1 Movement occurred.
LeftDown 2 The left button is down.
LeftUp 4 The left button is up.
RightDown 8 The right button is down.
RightUp 16 The right button is up.
MiddleDown 32 The middle button is down.
MiddleUp 64 The middle button is up.
XDown 128 An X button was pressed.
XUp 256 An X button was released.
Wheel 2,048 The wheel button is rotated.
HWheel 4,096 The wheel button is tilted.
Absolute 32,768 The x and y parameters contain normalized absolute coordinates.

If not set, those parameters contain relative data: the change in position since the last reported position.

This flag can be set, or not set, regardless of what kind of mouse or mouse-like device, if any, is connected to the system.

See Also