ThemeChangedInfo
Object returned by the ThemeChanged event
TypeScript
export interface ThemeChangedInfo extendsExtends
Properties
| Property | Description |
|---|---|
| theme | Current Theme: either name of a System Theme or a Custom Theme object |
| trigger | What caused Event to fire: "ThemeSelected" or "ThemeEdited" |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
theme
Current Theme: either name of a System Theme or a Custom Theme object
TypeScript
theme: AdaptableTheme | string;Property Value
AdaptableTheme | string
trigger
What caused Event to fire: "ThemeSelected" or "ThemeEdited"
TypeScript
trigger: 'ThemeSelected' | 'ThemeEdited';Property Value
'ThemeSelected' | 'ThemeEdited'
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any