cellEditable = table.IsCellEditable(row, column)
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. |
VB
Dim isCellEditable As Boolean = table.IsCellEditable(1, "Street") isCellEditable = table.IsCellEditable(1, 4)