elixlsx v0.0.4 Elixlsx.Workbook

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.

Summary

Functions

Append a sheet at the end

Insert a sheet at a given position, starting at 0

Types

t :: %Elixlsx.Workbook{datetime: Elixlsx.Util.calendar, sheets: [Elixlsx.Sheet.t, ...]}

Functions

append_sheet(workbook, sheet)

Append a sheet at the end.

insert_sheet(workbook, sheet, at \\ 0)

Specs

insert_sheet(Elixlsx.Workbook.t, Elixlsx.Sheet.t, non_neg_integer) :: Elixlsx.Workbook.t

Insert a sheet at a given position, starting at 0.