An options object for initializing a split layout.

interface IOptions {
    alignment?: SplitLayout.Alignment;
    orientation?: SplitLayout.Orientation;
    renderer: SplitLayout.IRenderer;
    spacing?: number;
}

Hierarchy (view full)

Properties

The content alignment of the layout.

The default is 'start'.

orientation?: SplitLayout.Orientation

The orientation of the layout.

The default is 'horizontal'.

The renderer to use for the split layout.

spacing?: number

The spacing between items in the layout.

The default is 4.