QuickSearchState
Adaptable State Section for Quick Search Module
TypeScript
export interface QuickSearchState extendsExtends
Properties
| Property | Description |
|---|---|
| CellMatchStyle | Style used to highlight matching cells |
| CurrentTextMatchStyle | Style used to highlight matching text within current match (not availale in SSRM) |
| QuickSearchText | Last Quick Search that was run (and will be applied at start-up) |
| TextMatchStyle | 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'>