RawMouseButtons Enumeration
The mouse buttons data for raw mouse input.
Namespace: DevCase.Win32.EnumsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum RawMouseButtons
<FlagsAttribute>
Public Enumeration RawMouseButtons
Dim instance As RawMouseButtons
[FlagsAttribute]
public enum class RawMouseButtons
[<FlagsAttribute>]
type RawMouseButtons
No code example is currently available or this language may not be supported.
None |
0 |
No button.
|
LeftDown |
1 |
Left button changed to down.
|
LeftUp |
2 |
Left button changed to up.
|
RightDown |
4 |
Right button changed to down.
|
RightUp |
8 |
Right button changed to up.
|
MiddleDown |
16 |
Middle button changed to down.
|
MiddleUp |
32 |
Middle button changed to up.
|
XButton1Down |
64 |
XBUTTON1 changed to down.
|
XButton1Up |
128 |
XBUTTON1 changed to up.
|
XButton2Down |
256 |
XBUTTON2 changed to down.
|
XButton2Up |
512 |
XBUTTON2 changed to up.
|
MouseWheel |
1,024 |
Mouse wheel moved.
The wheel delta is stored in ButtonData.
|