SoEventBuilderGetMouseMoveEvent Method |
Namespace: OIV.Inventor.ViewerComponentsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public SoLocation2Event GetMouseMoveEvent(
int x,
int y,
bool isAltDown,
bool isCtrlDown,
bool isShiftDown
)
Public Function GetMouseMoveEvent (
x As Integer,
y As Integer,
isAltDown As Boolean,
isCtrlDown As Boolean,
isShiftDown As Boolean
) As SoLocation2Event
public:
SoLocation2Event^ GetMouseMoveEvent(
int x,
int y,
bool isAltDown,
bool isCtrlDown,
bool isShiftDown
)
member GetMouseMoveEvent :
x : int *
y : int *
isAltDown : bool *
isCtrlDown : bool *
isShiftDown : bool -> SoLocation2Event
Parameters
- x
- Type: SystemInt32
X coordinate in pixel.
- y
- Type: SystemInt32
Y coordinate in pixel.
- isAltDown
- Type: SystemBoolean
Specify if Alt key was down when mouse has been moved.
- isCtrlDown
- Type: SystemBoolean
Specify if Ctrl key was down when mouse has been moved.
- isShiftDown
- Type: SystemBoolean
Specify if Shift key was down when mouse has been moved.
Return Value
Type:
SoLocation2EventRemarks The returned object should not be destroyed.
See Also