Source: factory.export/ObjDataExportOds.py
Exports data as an ODS (OpenDocument Spreadsheet) file.
Uses the odfpy library to build a spreadsheet document
with a single table containing header and data rows.
Rows are buffered in memory and the ODS file is written
...
| Method | Signature | Description |
|---|---|---|
| OpenFile | OpenFile(filename: str) -> None |
|
| CloseFile | CloseFile() -> None |
|
| WriteHeader | WriteHeader(header_fields: list) -> None |
|
| WriteData | WriteData(data: list) -> None |
|
| EscapeCSV | EscapeCSV(val: str) -> str |
|
| DefaultExtension | DefaultExtension() -> str |