Elixlsx.Workbook (elixlsx v0.6.0) View Source
Root structure for excel files.
Must contain at least one Elixlsx.Sheet object.
The datetime property can optionally be set to override the "created at" date. It defaults to the current time.
Link to this section Summary
Link to this section Types
Specs
t() :: %Elixlsx.Workbook{ datetime: String.t() | integer() | nil, sheets: [Elixlsx.Sheet.t(), ...] }
Link to this section Functions
Specs
append_sheet(t(), Elixlsx.Sheet.t()) :: t()
Append a sheet at the end.
Specs
insert_sheet(t(), Elixlsx.Sheet.t(), non_neg_integer()) :: t()
Insert a sheet at a given position, starting at 0.