IsCellEditable Method (JTable)

Class

JTable class

Action

Returns true if the specified cell is editable.

Syntax

bCellEditable = table.IsCellEditable(row, column)
Variable Description
bCellEditable True if the cell is editable; 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 bCellEditable = Table.IsCellEditable(1, "Street")
bCellEditable = Table.IsCellEditable(1, 4)