Raised when the user clicks on a table cell.
SyntaxVB6
Copy Code
|
|---|
Public Event TableCellClicked |
Event DataParameter | 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
RemarksRaised 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