klyn.io.xlsx.Worksheet.hasCell
method
public hasCell(reference as String) as Boolean:
Description

Returns true when a cell exists.

Parameters
  • reference A1 cell reference.
Returns

True when the cell was written or read from a workbook.

Example
sheet = Worksheet("Data")
sheet.write("A1", "x")
assert sheet.hasCell("A1")