Preserve QExcell frozen panes in XLSX
This commit is contained in:
@@ -19,6 +19,7 @@ export interface Sheet {
|
||||
id: string;
|
||||
name: string;
|
||||
visibility?: "hidden" | "veryHidden";
|
||||
frozenPane?: SheetFrozenPane;
|
||||
cells: Record<string, string>;
|
||||
mergedCells?: MergedCellRange[];
|
||||
hyperlinks?: Record<string, string>;
|
||||
@@ -26,6 +27,13 @@ export interface Sheet {
|
||||
charts?: SheetChart[];
|
||||
}
|
||||
|
||||
export interface SheetFrozenPane {
|
||||
columns?: number;
|
||||
rows?: number;
|
||||
topLeftCell?: string;
|
||||
activePane?: "topRight" | "bottomLeft" | "bottomRight";
|
||||
}
|
||||
|
||||
export interface CellFormat {
|
||||
bold?: boolean;
|
||||
italics?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user