Interface HorizontalLayout

A layout which orders its children horizontally (i.e. from left to right).

interface HorizontalLayout {
    elements: UISchemaElement[];
    options?: {
        [key: string]: any;
    };
    rule?: Rule;
    type: "HorizontalLayout";
}

Hierarchy (view full)

Properties

elements: UISchemaElement[]

The child elements of this layout.

options?: {
    [key: string]: any;
}

Any additional options.

Type declaration

  • [key: string]: any
rule?: Rule

An optional rule.

type: "HorizontalLayout"

The type of this UI schema element.

Generated using TypeDoc