xlsx_reader v0.1.3 XlsxReader.Sheet View Source

Worksheet structure.

This structure only contains the information useful to identify and retrieve the sheet actual data.

  • name - name of the sheet
  • rid - relationship ID used to retrieve the corresponding sheet in the archive
  • sheet_id - unique identifier of the sheet withing the workbook (unused by XlsxReader)

To access the sheet cells, see XlsxReader.sheet/3 and XlsxReader.sheets/2.

Link to this section Summary

Types

t()

XLSX worksheet metadata

Link to this section Types

Link to this type

t()

View Source
t() :: %XlsxReader.Sheet{
  name: String.t(),
  rid: String.t(),
  sheet_id: String.t()
}

XLSX worksheet metadata