Click or drag to resize

Control.MouseButtonDoubleClick Method

X#
Provide a method that is invoked when the control has focus, the mouse pointer is positioned over the window, and a mouse button is double-clicked.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD MouseButtonDoubleClick(
	oMouseEvent
) AS USUAL CLIPPER
Request Example View Source

Parameters

oMouseEvent (Optional)
Type: Usual
The MouseEvent object that contains information about the state of the mouse when the button was double-clicked.

Return Value

Type: Usual
Remarks
Tip 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