IsRowSelected Method (JTable)

Class

JTable.

Action

Returns true if the specified row is selected.

Syntax

rowSelected = table.IsRowSelected(row)
Variable Description
rowSelected True if the row is selected; otherwise false. Boolean.
row The index of the row. The value is zero-based. Integer.

Examples

Dim isRowSelected As Boolean = table.IsRowSelected(1)