SoEventBuilderGetMouseDoubleClickEvent Method |
Namespace: OIV.Inventor.ViewerComponentsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2023.1.3.0 (2023.1.3)
Syntax public SoMouseButtonEvent GetMouseDoubleClickEvent(
int x,
int y,
SoMouseButtonEventButtons buttonId,
bool isAltDown,
bool isCtrlDown,
bool isShiftDown
)
Public Function GetMouseDoubleClickEvent (
x As Integer,
y As Integer,
buttonId As SoMouseButtonEventButtons,
isAltDown As Boolean,
isCtrlDown As Boolean,
isShiftDown As Boolean
) As SoMouseButtonEvent
public:
SoMouseButtonEvent^ GetMouseDoubleClickEvent(
int x,
int y,
SoMouseButtonEventButtons buttonId,
bool isAltDown,
bool isCtrlDown,
bool isShiftDown
)
member GetMouseDoubleClickEvent :
x : int *
y : int *
buttonId : SoMouseButtonEventButtons *
isAltDown : bool *
isCtrlDown : bool *
isShiftDown : bool -> SoMouseButtonEvent
Parameters
- x
- Type: SystemInt32
X coordinate in pixel.
- y
- Type: SystemInt32
Y coordinate in pixel.
- buttonId
- Type: OIV.Inventor.EventsSoMouseButtonEventButtons
Which mouse button has been double clicked.
- isAltDown
- Type: SystemBoolean
Specify if Alt key was down when mouse has been double clicked.
- isCtrlDown
- Type: SystemBoolean
Specify if Ctrl key was down when mouse has been double clicked.
- isShiftDown
- Type: SystemBoolean
Specify if Shift key was down when mouse has been double clicked.
Return Value
Type:
SoMouseButtonEventRemarks The returned object should not be destroyed.
See Also