Search
FlowChart.TableCellClicked Event
See Also
 



Raised when the user clicks on a table cell.

 Syntax

VB6  Copy Code

Public Event TableCellClicked

 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: 33

 Remarks

Raised when the user 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