Occurs when the user double-clicks the control.
SyntaxVB6
Copy Code
|
|---|
Public Event DblClicked |
Event DataParameter | Type | Description |
|---|---|---|
button | [input] EMouseButton enumeration | The button that is pressed. |
x | [input] long | The x coordinate of the document point that was clicked. |
y | [input] long | The y coordinate of the document point that was clicked. |
Dispatch ID: 17
RemarksRaised when the control background is double-clicked - the mouse is not placed at any FlowChartX object. The button parameter indicates type of mouse button pressed (mbLeft, mbRight, mbMiddle). The (x, y) point is relative to the document upper left corner and is measured in document coordinates.
See Also