CsvExportOptions
Defined in: js-api/src/dataframe/types.ts:49
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
columnFormats? | ColumnsFormatCsvExportOptions | Column-specific formats (column name -> format). For format examples, see [dateTimeFormatters]. | js-api/src/dataframe/types.ts:89 |
columns? | string[] | Column order | js-api/src/dataframe/types.ts:79 |
delimiter? | string | Field delimiter; comma if not specified | js-api/src/dataframe/types.ts:52 |
filteredRowsOnly? | boolean | Whether only filtered rows are included. Will be combined with [selectedRowsOnly]. | js-api/src/dataframe/types.ts:70 |
includeHeader? | boolean | Whether the header row containing column names is included. True if not specified. | js-api/src/dataframe/types.ts:61 |
includeUtf8Bom? | boolean | Whether to include UTF-8 BOM marker at the beginning of the file. Helps Excel correctly detect UTF-8 encoding for multibyte characters. | js-api/src/dataframe/types.ts:95 |
missingValue? | string | Textual representation of the missing value. Empty string if not specified. | js-api/src/dataframe/types.ts:58 |
moleculesAsSmiles? | boolean | Saves MOLBLOCKS as SMILES. | js-api/src/dataframe/types.ts:85 |
newLine? | string | New line character; \n if not specified | js-api/src/dataframe/types.ts:55 |
qualifierAsColumn? | boolean | Expands qualified numbers into two columns: qual(column) and column | js-api/src/dataframe/types.ts:82 |
rowIndexes? | number[] | Explicitly defined order of rows. Mutually exclusive with [selectedRowsOnly] or [filteredRowsOnly]. | js-api/src/dataframe/types.ts:76 |
selectedColumnsOnly? | boolean | Whether only selected columns are included. False if not specified. | js-api/src/dataframe/types.ts:64 |
selectedRowsOnly? | boolean | Whether only selected rows are included. Will be combined with [filteredRowsOnly]. | js-api/src/dataframe/types.ts:73 |
visibleColumnsOnly? | boolean | Whether only visible columns are included. False if not specified. | js-api/src/dataframe/types.ts:67 |