class Xlsxrb::Elements::Cell

Represents a single cell in a worksheet. All row and column indices are 0-based.

@example Access cell properties

cell = sheet["A1"]
cell.value       # raw value
cell.ref         # "A1"
cell.to_i        # integer value
cell.to_date     # Date value

@api public