Skip to content
Sheetwrite

Sheetwrite / Documentation

RowBridgeCell@sheetwrite/core

A cell effect with semantic column and host row identity.

A cell effect with semantic column and host row identity.

Members 7

sheet
readonly sheet: SheetId;
row
readonly row: number;
rowId
readonly rowId: Id | null;
col
readonly col: number;
columnKey
readonly columnKey: string | null;
previous
readonly previous: CellValue | undefined;
next
readonly next: CellValue | undefined;

Declaration

View full TypeScript declaration
export interface RowBridgeCell<Id extends RowBridgeId = RowBridgeId> {
readonly sheet: SheetId;
readonly row: number;
readonly rowId: Id | null;
readonly col: number;
readonly columnKey: string | null;
readonly previous: CellValue | undefined;
readonly next: CellValue | undefined;
}