IsCellEditable Method (JTable)

Class

JTable.

Action

Returns true if the specified cell is editable.

Syntax

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