Skip to content
Sheetwrite

Sheetwrite / Documentation

GridReadyEvent@sheetwrite/vue

Grid handle, generation, and reason published after adapter initialization.

Grid handle, generation, and reason published after adapter initialization.

Members 3

grid Live handle just published by the adapter; replaced on the next reset generation.
grid: Grid;
generation One-based adapter generation, incremented whenever a Grid is replaced.
generation: number;
reason Whether readiness followed first initialization, an input reset, or a renderer reset.
reason: GridReadyReason;

Declaration

View full TypeScript declaration
export interface GridReadyEvent {
grid: Grid;
generation: number;
reason: GridReadyReason;
}