Window.MouseButtonDoubleClick Method (Typed) | |
Provide a method that is invoked when the mouse pointer is positioned over the window and a mouse button is double-clicked.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD MouseButtonDoubleClick(
oMouseEvent AS MouseEvent
) AS USUAL
public virtual Usual MouseButtonDoubleClick(
MouseEvent oMouseEvent
)
Request Example
View SourceParameters
- oMouseEvent
- Type: MouseEvent
The MouseEvent object that contains information about the state of the mouse when the button was double-clicked.
Return Value
Type:
UsualThis method calls Window.Default() and returns the result of Window.Default()
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
MouseButtonDoubleClick() often occurs between MouseButtonDown() and MouseButtonUp() event handlers.
See Also