Search
FlowChart.TableDblClicked Event
See Also
 



Occurs when a table is double-clicked with the mouse.

 Syntax

VB6  Copy Code

Public Event TableDblClicked

 Event Data

Parameter

Type

Description

table

[input] reference to Table object

The table that is clicked on.

button

[input] EMouseButton enumeration

The button that is pressed.

x

[input] long

The x coordinate of the point inside the table bounding rectangle.

y

[input] long

The y coordinate of the point inside the table bounding rectangle.

Dispatch ID: 31

 Remarks

Fired when the user double-clicks a table. The button parameter indicates type of mouse button pressed (mbLeft, mbRight, mbMiddle). The (x, y) point is relative to the table bounding rectangle upper left corner and it is measured in document coordinates.

 See Also