LayoutChangedInfo
EventInfo returned by LayoutChanged event
TypeScript
export interface LayoutChangedInfo extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| actionName | LayoutChangedAction | What caused Layout State to change |
| newLayoutState | LayoutState | Current Layout State |
| oldLayoutState | LayoutState | undefined | Previous Layout State |
| adaptableContext | any | 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