LayoutChangedInfo

EventInfo returned by LayoutChanged event

TypeScript
export interface LayoutChangedInfo extends
Extends

BaseContext

Properties

PropertyDescription
actionNameWhat caused Layout State to change
newLayoutStateCurrent Layout State
oldLayoutStatePrevious Layout State
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

actionName

What caused Layout State to change

TypeScript
actionName: LayoutChangedAction;
Property Value

LayoutChangedAction

newLayoutState

Current Layout State

TypeScript
newLayoutState: LayoutState;
Property Value

LayoutState

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