xlsxwriter 0.1.0
xlsxwriter: ^0.1.0 copied to clipboard
Native, fast, low-memory Excel .xlsx writer for Dart. An FFI binding to libxlsxwriter with a constant-memory mode for large sheets.
Changelog #
0.1.0 #
First release. A native .xlsx writer for Dart, binding libxlsxwriter 1.2.2
over FFI, with libxlsxwriter and zlib 1.3.1 vendored and compiled from source at
build time (no system dependencies on macOS, Linux, or Windows).
WorkbookandWorkbook.constantMemoryfor in-memory and constant-memory writing, with aNativeFinalizerso a forgotten workbook is freed.Worksheetwrites:writeString,writeNumber,writeBool,writeFormula,writeDateTime,writeUrl,writeBlank.- Layout:
setColumn,setColumnWidth,setRow,mergeRange,freezePanes. Formatwithbold,italic,underline,fontName,fontSize,fontColor,backgroundColor,numberFormat,align,verticalAlign,textWrap,border, andborderColor.- libxlsxwriter error codes surfaced as
XlsxWriterExceptionwith the human-readable message.