Skip to main content

CsvExportOptions

Defined in: js-api/src/dataframe/types.ts:49

Properties

PropertyTypeDescriptionDefined in
columnFormats?ColumnsFormatCsvExportOptionsColumn-specific formats (column name -> format). For format examples, see [dateTimeFormatters].js-api/src/dataframe/types.ts:89
columns?string[]Column orderjs-api/src/dataframe/types.ts:79
delimiter?stringField delimiter; comma if not specifiedjs-api/src/dataframe/types.ts:52
filteredRowsOnly?booleanWhether only filtered rows are included. Will be combined with [selectedRowsOnly].js-api/src/dataframe/types.ts:70
includeHeader?booleanWhether the header row containing column names is included. True if not specified.js-api/src/dataframe/types.ts:61
includeUtf8Bom?booleanWhether 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?stringTextual representation of the missing value. Empty string if not specified.js-api/src/dataframe/types.ts:58
moleculesAsSmiles?booleanSaves MOLBLOCKS as SMILES.js-api/src/dataframe/types.ts:85
newLine?stringNew line character; \n if not specifiedjs-api/src/dataframe/types.ts:55
qualifierAsColumn?booleanExpands qualified numbers into two columns: qual(column) and columnjs-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?booleanWhether only selected columns are included. False if not specified.js-api/src/dataframe/types.ts:64
selectedRowsOnly?booleanWhether only selected rows are included. Will be combined with [filteredRowsOnly].js-api/src/dataframe/types.ts:73
visibleColumnsOnly?booleanWhether only visible columns are included. False if not specified.js-api/src/dataframe/types.ts:67