Specifies what mouse button is pressed when a mouse related event is raised.
SyntaxVB6
Copy Code
|
|---|
Public Enum EMouseButton |
C++
Copy Code
|
|---|
enum EMouseButton |
Members| Member name | Value | Description | |
|---|---|---|---|
![]() |
mbLeft |
0 | Indicates that the left mouse button is pressed. |
![]() |
mbRight |
1 | Indicates that the right mouse button is pressed. |
![]() |
mbMiddle |
2 | Indicates that the middle mouse button is pressed. |
See Also