Skip to content
Sheetwrite

Sheetwrite / Documentation

DataSourceColumnBand@sheetwrite/core

One half-open run of workbook columns, in stable sheet order.

One half-open run of workbook columns, in stable sheet order.

Members 3

start Zero-based workbook column index of the first key.
start: number;
end Exclusive workbook column index after the last key.
end: number;
keys Stable workbook column keys for every index in [start, end).
keys: readonly string[];

Declaration

View full TypeScript declaration
export interface DataSourceColumnBand {
start: number;
end: number;
keys: readonly string[];
}