XlsxReader.Workbook (xlsx_reader v0.8.0) View Source

Workbook structure.

  • sheets - list of sheet metadata
  • rels - workbook relationships
  • shared_strings - list of shared strings
  • style_types - List of types indexed by style
  • custom_formats - Map of custom formats declared for this document
  • base_date - base date for all serial dates in the workbook

Link to this section Summary

Types

t()

XLSX workbook

Link to this section Types

Specs

t() :: %XlsxReader.Workbook{
  base_date: nil | Date.t(),
  custom_formats: map(),
  rels: nil | map(),
  shared_strings: nil | XlsxReader.Array.t(String.t()),
  sheets: [XlsxReader.Sheet.t()],
  style_types: nil | XlsxReader.Styles.style_types()
}

XLSX workbook