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

    Interface LayoutComponent

    interface LayoutComponent {
        componentName: "view";
        componentState?: Partial<ViewCreationOptions>;
        height?: number;
        id?: string | string[];
        isClosable?: boolean;
        title?: string;
        type: "component";
        width?: number;
    }
    Index
    componentName: "view"

    Only a component type will have this property and it should be set to view.

    componentState?: Partial<ViewCreationOptions>

    Only a component type will have this property and it represents the view options of a given component.

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