QuickSearchState

Adaptable State Section for Quick Search Module

TypeScript
export interface QuickSearchState extends
Extends

BaseState

Properties

PropertyTypeDescription
CellMatchStyleOmit<AdaptableStyle, 'ClassName'>Style used to highlight matching cells
CurrentTextMatchStyleOmit<AdaptableStyle, 'ClassName'>Style used to highlight matching text within current match (not availale in SSRM)
QuickSearchTextstringLast Quick Search that was run (and will be applied at start-up)
TextMatchStyleOmit<AdaptableStyle, 'ClassName'>Style used to highlight matching text within a cell (not availale in SSRM)

Property Details

CellMatchStyle

Style used to highlight matching cells

TypeScript
CellMatchStyle?: Omit<AdaptableStyle, 'ClassName'>;
Property Value

Omit<AdaptableStyle, 'ClassName'>

CurrentTextMatchStyle

Style used to highlight matching text within current match (not availale in SSRM)

TypeScript
CurrentTextMatchStyle?: Omit<AdaptableStyle, 'ClassName'>;
Property Value

Omit<AdaptableStyle, 'ClassName'>

QuickSearchText

Last Quick Search that was run (and will be applied at start-up)

TypeScript
QuickSearchText?: string;
Property Value

string

TextMatchStyle

Style used to highlight matching text within a cell (not availale in SSRM)

TypeScript
TextMatchStyle?: Omit<AdaptableStyle, 'ClassName'>;
Property Value

Omit<AdaptableStyle, 'ClassName'>