IsCellSelected Method (JTable)

Class

JTable class

Action

Returns true if the specified cell is selected; otherwise false.

Syntax

bCellSelected = table.IsCellSelected(row, column)
Variable Description
bCellSelected True if the cell is selected; otherwise false. BOOLEAN.
row The index of the row. The value is one-based. INTEGER.
column The name or index of the column. LISTITEM.

Examples

BOOLEAN bCellSelected = Table.IsCellSelected(1, "Street")
bCellSelected = Table.IsCellSelected(1, 4)