AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface LayoutRow

    interface LayoutRow {
        content?: LayoutContent;
        height?: number;
        id?: string | string[];
        isClosable?: boolean;
        title?: string;
        type: "row";
        width?: number;
    }
    Index
    content?: LayoutContent

    Array of configurations for items that will be created as children of this item.

    height?: number
    id?: string | string[]
    isClosable?: boolean
    title?: string
    type: "row"

    The type of the item. Possible values are 'row', 'column', 'stack', and 'component'.

    width?: number