Skip to content
Sheetwrite

Sheetwrite / Documentation

SearchResult@sheetwrite/core

Ordered matches and active index produced by a grid search.

Ordered matches and active index produced by a grid search.

Members 3

query Query string retained for navigation and subsequent replacement.
query: string;
matches Matching cells in row-major order.
matches: CellAddress[];
active Index of the active match within matches, or -1 when there are none.
active: number;

Declaration

View full TypeScript declaration
export interface SearchResult {
query: string;
matches: CellAddress[];
active: number;
}