CellValid
This property sets or returns the validity flag of the table cell.
Syntax
CellValid (Column as Variant, RowIndex as Long) as Boolean
Parameter | Description |
---|---|
Column | Zero-based index of name of column |
RowIndex | Zero-based index of row |
Sample Code
' Makes table object valid
theEmptyTable.CellValid(0,0) = True
theEmptyTable.CellValid(1,0) = True