cellSelected = table.IsCellSelected(row, column)
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. |
VB
Dim isCellSelected As Boolean = table.IsCellSelected(1, "Street") isCellSelected = Table.IsCellSelected(1, 4)