SoEventBuilder.GetMouseReleaseEvent Method |
Namespace: OIV.Inventor.ViewerComponentsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.13.0 (9.9.13.0)
Syntaxpublic SoMouseButtonEvent GetMouseReleaseEvent(
int x,
int y,
SoMouseButtonEvent. Buttons buttonId,
bool isAltDown,
bool isCtrlDown,
bool isShiftDown
)
Public Function GetMouseReleaseEvent (
x As Integer,
y As Integer,
buttonId As SoMouseButtonEvent.Buttons,
isAltDown As Boolean,
isCtrlDown As Boolean,
isShiftDown As Boolean
) As SoMouseButtonEvent
public:
SoMouseButtonEvent^ GetMouseReleaseEvent(
int x,
int y,
SoMouseButtonEvent. Buttons buttonId,
bool isAltDown,
bool isCtrlDown,
bool isShiftDown
)
member GetMouseReleaseEvent :
x : int *
y : int *
buttonId : SoMouseButtonEvent. Buttons *
isAltDown : bool *
isCtrlDown : bool *
isShiftDown : bool -> SoMouseButtonEvent
Parameters
- x
- Type: System.Int32
X coordinate in pixel.
- y
- Type: System.Int32
Y coordinate in pixel.
- buttonId
- Type: OIV.Inventor.Events.SoMouseButtonEvent.Buttons
Which mouse button has been released.
- isAltDown
- Type: System.Boolean
Specify if Alt key was down when mouse has been released.
- isCtrlDown
- Type: System.Boolean
Specify if Ctrl key was down when mouse has been released.
- isShiftDown
- Type: System.Boolean
Specify if Shift key was down when mouse has been released.
Return Value
Type:
SoMouseButtonEvent
RemarksThe returned object should not be destroyed.
See Also