DoubleClickCell Method (JTable)

Class

JTable class

Action

Double-clicks the specified cell in the table.

Syntax

table.DoubleClickCell(row, column, [button, position, modifiers])
Variable Description
row The index of the row. The value is one-based. INTEGER.
column The name or index of the column. LISTITEM.
button Optional.The button used for double-clicking. Valid values are: left (=1, the default value), right (=2), middle (=3). INTEGER.
position Optional.The double-clicked position within the table cell. If the position is omitted, the double-click is done in the center of the table cell. POINT.
modifiers Optional.The modifier keys (Alt, Shift and Ctrl) to press while double-clicking the table cell. Default: Don't use modifier keys. MODIFIERKEYSTATE.

Examples

Table.DoubleClickCell(1, "Street", 1, {10, 10}, MOD_CTRL)
Table.DoubleClickCell(1, "Street")
Table.DoubleClickCell(1, 5)