Search
FlowChart.TableCellDblClicked Event
See Also
 



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

 Syntax

VB6  Copy Code

Public Event TableCellDblClicked

 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.

row

[input] long

The row where the clicked cell is located.

col

[input] long

The column where the clicked cell is located.

Dispatch ID: 34

 Remarks

Fired when the user double-clicks on a table cell. The button parameter indicates type of mouse button pressed (mbLeft, mbRight, mbMiddle). The row and col arguments specify which cell is clicked.

 See Also