Elixlsx.Writer (elixlsx v0.6.0) View Source
Contains functions to generate the individual files in the XLSX zip package.
Link to this section Summary
Functions
Returns a list of tuples {filename, filecontent}.
Returns files in the _rels/
directory.
Returns the filename _rels/.rels
and it's content as a tuple.
Returns a tuple {'docProps/app.xml', "XML Data"}
.
Returns files in the docProps directory.
Link to this section Types
Specs
Link to this section Functions
Specs
create_files(Elixlsx.Workbook.t(), Elixlsx.Compiler.WorkbookCompInfo.t()) :: [ zip_tuple() ]
Returns a list of tuples {filename, filecontent}.
Both filename and filecontent are represented as charlists (so that they can be used with the OTP :zip module.)
Specs
get__rels_dir(Elixlsx.Workbook.t()) :: [zip_tuple()]
Returns files in the _rels/
directory.
Specs
get__rels_dotrels(Elixlsx.Workbook.t()) :: zip_tuple()
Returns the filename _rels/.rels
and it's content as a tuple.
Specs
get_docProps_app_xml(Elixlsx.Workbook.t()) :: zip_tuple()
Returns a tuple {'docProps/app.xml', "XML Data"}
.
Specs
get_docProps_core_xml(Elixlsx.Workbook.t()) :: zip_tuple()
Specs
get_docProps_dir(Elixlsx.Workbook.t()) :: [zip_tuple()]
Returns files in the docProps directory.
Specs
get_xl_rels_dir(any(), [Elixlsx.Compiler.SheetCompInfo.t()], non_neg_integer()) :: [zip_tuple()]
Specs
get_xl_styles_xml(Elixlsx.Compiler.WorkbookCompInfo.t()) :: zip_tuple()
Specs
get_xl_workbook_xml(Elixlsx.Workbook.t(), [Elixlsx.Compiler.SheetCompInfo.t()]) :: zip_tuple()
Specs
get_xl_worksheets_dir( Elixlsx.Workbook.t(), Elixlsx.Compiler.WorkbookCompInfo.t() ) :: [ zip_tuple() ]