interface SpreadsheetFileV2NodeParameters {
binaryPropertyName?: string;
fileFormat?:
| "csv"
| "html"
| "ods"
| "rtf"
| "xls"
| "xlsx"
| "autodetect";
operation?: "fromFile"
| "toFile";
options?:
| {
delimiter?: string;
enableBOM?: boolean;
encoding?: | "ascii"
| "ucs2"
| "utf8"
| "latin1"
| "ucs-2"
| "utf-8"
| "utf16le";
fromLine?: number;
headerRow?: boolean;
includeEmptyCells?: boolean;
maxRowCount?: number;
range?: string;
rawData?: boolean;
readAsString?: boolean;
relaxQuotes?: boolean;
sheetName?: string;
}
| {
compression?: boolean;
fileName?: string;
headerRow?: boolean;
sheetName?: string;
};
}
Properties§
Source§readonly file Format?:
| "csv"
| "html"
| "ods"
| "rtf"
| "xls"
| "xlsx"
| "autodetect"
readonly file Format?:
| "csv"
| "html"
| "ods"
| "rtf"
| "xls"
| "xlsx"
| "autodetect"
The format of the binary data to read from Default: "autodetect"
Source§readonly options?:
| {
delimiter?: string;
enableBOM?: boolean;
encoding?: | "ascii"
| "ucs2"
| "utf8"
| "latin1"
| "ucs-2"
| "utf-8"
| "utf16le";
fromLine?: number;
headerRow?: boolean;
includeEmptyCells?: boolean;
maxRowCount?: number;
range?: string;
rawData?: boolean;
readAsString?: boolean;
relaxQuotes?: boolean;
sheetName?: string;
}
| {
compression?: boolean;
fileName?: string;
headerRow?: boolean;
sheetName?: string;
}
readonly options?:
| {
delimiter?: string;
enableBOM?: boolean;
encoding?: | "ascii"
| "ucs2"
| "utf8"
| "latin1"
| "ucs-2"
| "utf-8"
| "utf16le";
fromLine?: number;
headerRow?: boolean;
includeEmptyCells?: boolean;
maxRowCount?: number;
range?: string;
rawData?: boolean;
readAsString?: boolean;
relaxQuotes?: boolean;
sheetName?: string;
}
| {
compression?: boolean;
fileName?: string;
headerRow?: boolean;
sheetName?: string;
}
Default: {}
Default: "data"