@sheetwrite/coreinterface
Case, whole-cell, sheet, and column constraints for grid search.
Members 4
matchCase Case-sensitive match (default false).
matchCase?: boolean;wholeCell Match only when the whole cell text equals the query (default false: substring).
wholeCell?: boolean;sheet Restrict to a sheet (defaults to the active sheet).
columns Restrict to these column indices (defaults to all columns).
columns?: number[];Declaration
View full TypeScript declaration
export interface SearchOptions { matchCase?: boolean; wholeCell?: boolean; columns?: number[];}