public hasCell(reference as String) as Boolean:
Returns true when a cell exists.
| Parameter | Description |
|---|---|
reference | A1 cell reference. |
True when the cell was written or read from a workbook.
sheet = Worksheet("Data")
sheet.write("A1", "x")
assert sheet.hasCell("A1")