LayoutChangedInfo

EventInfo returned by LayoutChanged event

TypeScript
export interface LayoutChangedInfo extends
Extends

BaseContext

Properties

PropertyTypeDescription
actionNameLayoutChangedActionWhat caused Layout State to change
newLayoutStateLayoutStateCurrent Layout State
oldLayoutStateLayoutState | undefinedPrevious Layout State
adaptableContextanyCustom 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