View Source XlsxReader.Workbook (xlsx_reader v0.8.10)
Workbook structure.
sheets- list of sheet metadatarels- workbook relationshipsshared_strings- list of shared stringsstyle_types- List of types indexed by stylecustom_formats- Map of custom formats declared for this documentbase_date- base date for all serial dates in the workbookoptions- Map of options for the workbook. Currently includes:exclude_hidden_sheets?: Whether to exclude hidden sheets in the workbook
Summary
Types
@type t() :: %XlsxReader.Workbook{ base_date: nil | Date.t(), custom_formats: map(), options: %{exclude_hidden_sheets?: boolean()}, rels: nil | map(), shared_strings: nil | XlsxReader.Array.t(String.t()), sheets: [XlsxReader.Sheet.t()], style_types: nil | XlsxReader.Styles.style_types() }
XLSX workbook