IsCellSelected Method (JTable)

Class

JTable.

Action

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

Syntax

cellSelected = table.IsCellSelected(row, column)
Variable Description
cellSelected True if the cell is selected; otherwise false. Boolean.
row The index of the row. The value is zero-based. Integer.
column The name or index of the column. ItemIdentifier.

Examples

Dim isCellSelected As Boolean = table.IsCellSelected(1, "Street")
isCellSelected = Table.IsCellSelected(1, 4)