class Xlsxrb::Elements::Worksheet

Represents a single fully parsed, in-memory worksheet in a workbook. Provides coordinate random access (sheet), row lookups (row_at), and immutable cell updates (update_cell).

@example Access cells and rows

sheet = workbook.sheet(0).load
cell = sheet["A1"]
row = sheet.row_at(0)

@api public