Interface VerticalLayout

A layout which orders its child elements vertically (i.e. from top to bottom).

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

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: "VerticalLayout"

The type of this UI schema element.

Generated using TypeDoc