interface SpreadsheetFileV1NodeParameters {
binaryPropertyName?: string;
fileFormat?:
| "csv"
| "html"
| "ods"
| "rtf"
| "xls"
| "xlsx";
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"
readonly file Format?: "csv" | "html" | "ods" | "rtf" | "xls" | "xlsx"
The format of the file to save the data as Default: "xls"
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"