interface IDownArea {
    collapsed?: boolean;
    currentWidget: null | Widget;
    size: null | number;
    widgets: null | Widget[];
}

Properties

collapsed?: boolean

A flag denoting whether the down area has been collapsed.

currentWidget: null | Widget

The current widget that has down area focus.

size: null | number

Vertical relative size of the down area

The main area will take the rest of the height

widgets: null | Widget[]

The collection of widgets held by the panel.