Table of Contents

Enum MouseButtons

Namespace
NetEx.Hooks
Assembly
NetEx.Hooks.dll

Specifies constants that define which mouse button was pressed.

[Flags]
public enum MouseButtons

Fields

Left = 1048576

The left mouse button was pressed.

Middle = 4194304

The middle mouse button was pressed.

None = 0

No mouse button was pressed.

Right = 2097152

The right mouse button was pressed.

XButton1 = 8388608

The first XButton (XBUTTON1) on Microsoft IntelliMouse Explorer was pressed.

XButton2 = 16777216

The second XButton (XBUTTON2) on Microsoft IntelliMouse Explorer was pressed.

Remarks

This code was taken from the .NET Framework.

See Also