IMouseInfo80
This interface returns the mouse position and general mouse information.
|
Properties |
|
|
Delta |
Reserved. Currently not used. |
|
Gets whether various virtual keys are down. |
|
|
Gets the X-coordinate of the mouse. |
|
|
Gets the Y-coordinate of the mouse. |
Flags
Gets which of various virtual keys are down. This parameter can be any combination of the following values:
§ MK_ LBUTTON = 1
§ MK_ RBUTTON = 2
§ MK_ SHIFT = 4
§ MK_CONTROL = 8
§ MK_ MBUTTON = 16
JavaScript |
|
Flags |
C# |
|
uint Flags { get; } |
C++ |
|
HRESULT Flags([out, retval] unsigned long* pVal) |
X
Gets the x-coordinate of the mouse in screen units.
JavaScript |
|
X |
C# |
|
int X { get; } |
C++ |
|
HRESULT X([out, retval] long* pVal) |
Y
Gets the y-coordinate of the mouse in screen units.
JavaScript |
|
Y |
C# |
|
int Y { get; } |
C++ |
|
HRESULT Y([out, retval] long* pVal) |