LayoutChangedInfo
EventInfo returned by LayoutChanged event
TypeScript
export interface LayoutChangedInfo extendsExtends
Properties
| Property | Description |
|---|---|
| actionName | What caused Layout State to change |
| newLayoutState | Current Layout State |
| oldLayoutState | Previous Layout State |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
actionName
What caused Layout State to change
TypeScript
actionName: LayoutChangedAction;Property Value
newLayoutState
Current Layout State
TypeScript
newLayoutState: LayoutState;Property Value
oldLayoutState
Previous Layout State
TypeScript
oldLayoutState: LayoutState | undefined;Property Value
LayoutState | undefined
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any