OpenFin Workspace API
    Preparing search index...

    Interface ContainerTemplateFragment<T>

    interface ContainerTemplateFragment<
        T extends keyof typeof ContainerTemplateFragmentNames,
    > {
        children?: TemplateFragment[];
        style?: Record<string, string | number>;
        type: T;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index
    children?: TemplateFragment[]

    Sub-fragments of the container.

    You can use container template fragment to create nested composition structures.

    style?: Record<string, string | number>

    CSS style properties of the fragment.

    All the available custom template fragments support all of the React's inline style properties (with camelCase keys)

    Note: "position: fixed" is disallowed as a fragment style.

    type: T

    Type of the template fragment.