AboutSupportDeveloper GuideVersion 38.126.82.64
interface LayoutColumn {
    content?: LayoutContent;
    height?: number;
    id?: string | string[];
    isClosable?: boolean;
    title?: string;
    type: "column";
    width?: number;
}

Properties

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

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

width?: number