Occurs when a table is clicked with the mouse.
SyntaxVB6
Copy Code
|
|---|
Public Event TableClicked |
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. |
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: 30
RemarksFired when the user clicks on 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