forked from sheetjs/sheetjs
		
	- HTML whitespace (fixes #849 h/t @laurentauthier) - XLML number format write (fixes #904 h/t @james-boswell) - XLAM/XLA write - 'array' write type - XLSX/XLSB/XLS/XLML RTL read/write - XLS merge cells write - demo and typing refresh
		
			
				
	
	
	
		
			4.5 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			4.5 KiB
		
	
	
	
	
	
	
	
Writing Options
The exported write and writeFile functions accept an options argument:
| Option Name | Default | Description | 
|---|---|---|
| type | Output data encoding (see Output Type below) | |
| cellDates | false | Store dates as type d(default isn) | 
| bookSST | false | Generate Shared String Table ** | 
| bookType | "xlsx" | Type of Workbook (see below for supported formats) | 
| sheet | "" | Name of Worksheet for single-sheet formats ** | 
| compression | false | Use ZIP compression for ZIP-based formats ** | 
| Props | Override workbook properties when writing ** | |
| themeXLSX | Override theme XML when writing XLSX/XLSB/XLSM ** | 
- bookSSTis slower and more memory intensive, but has better compatibility with older versions of iOS Numbers
- The raw data is the only thing guaranteed to be saved. Features not described in this README may not be serialized.
- cellDatesonly applies to XLSX output and is not guaranteed to work with third-party readers. Excel itself does not usually write cells with type- dso non-Excel tools may ignore the data or error in the presence of dates.
- Propsis an object mirroring the workbook- Propsfield. See the table from the Workbook File Properties section.
- if specified, the string from themeXLSXwill be saved as the primary theme for XLSX/XLSB/XLSM files (toxl/theme/theme1.xmlin the ZIP)
Supported Output Formats
For broad compatibility with third-party tools, this library supports many
output formats.  The specific file type is controlled with bookType option:
| bookType | file ext | container | sheets | Description | 
|---|---|---|---|---|
| xlsx | .xlsx | ZIP | multi | Excel 2007+ XML Format | 
| xlsm | .xlsm | ZIP | multi | Excel 2007+ Macro XML Format | 
| xlsb | .xlsb | ZIP | multi | Excel 2007+ Binary Format | 
| biff8 | .xls | CFB | multi | Excel 97-2004 Workbook Format | 
| biff5 | .xls | CFB | multi | Excel 5.0/95 Workbook Format | 
| biff2 | .xls | none | single | Excel 2.0 Worksheet Format | 
| xlml | .xls | none | multi | Excel 2003-2004 (SpreadsheetML) | 
| ods | .ods | ZIP | multi | OpenDocument Spreadsheet | 
| fods | .fods | none | multi | Flat OpenDocument Spreadsheet | 
| csv | .csv | none | single | Comma Separated Values | 
| txt | .txt | none | single | UTF-16 Unicode Text (TXT) | 
| sylk | .sylk | none | single | Symbolic Link (SYLK) | 
| html | .html | none | single | HTML Document | 
| dif | .dif | none | single | Data Interchange Format (DIF) | 
| dbf | .dbf | none | single | dBASE II + VFP Extensions (DBF) | 
| rtf | .rtf | none | single | Rich Text Format (RTF) | 
| prn | .prn | none | single | Lotus Formatted Text | 
| eth | .eth | none | single | Ethercalc Record Format (ETH) | 
- compressiononly applies to formats with ZIP containers.
- Formats that only support a single sheet require a sheetoption specifying the worksheet. If the string is empty, the first worksheet is used.
- writeFilewill automatically guess the output file format based on the file extension if- bookTypeis not specified. It will choose the first format in the aforementioned table that matches the extension.
Output Type
The type argument for write mirrors the type argument for read:
| type | output | 
|---|---|
| "base64" | string: Base64 encoding of the file | 
| "binary" | string: binary string (byte nisdata.charCodeAt(n)) | 
| "string" | string: JS string (characters interpreted as UTF8) | 
| "buffer" | nodejs Buffer | 
| "array" | ArrayBuffer, fallback array of 8-bit unsigned int | 
| "file" | string: path of file that will be created (nodejs only) |