Skip to content
Sheetwrite

Sheetwrite / Documentation

Workbook@sheetwrite/core

Live workbook schema containing ordered sheets and the active sheet ID.

Live workbook schema containing ordered sheets and the active sheet ID.

Members 3

sheets Sheets in display/tab order.
sheets: Sheet[];
activeSheet Active sheet ID and initial tab presented when the grid is created.
activeSheet: SheetId;
namedRanges Formula names shared by the workbook or shadowed within a sheet scope.
namedRanges?: NamedRangeSnapshot[];

Declaration

View full TypeScript declaration
export interface Workbook {
sheets: Sheet[];
activeSheet: SheetId;
namedRanges?: NamedRangeSnapshot[];
}