AboutSupportDeveloper GuideVersion 41.134.100.117

Options to use when adding a view to a TabStack.

interface AddViewOptions {
    location?: {
        id: string;
    } & AddViewToStackOptions;
    name: string;
    options: ViewState;
    targetView?: Identity;
    uuid: string;
}

Properties

location?: {
    id: string;
} & AddViewToStackOptions

If specified, view creation will not attach to a window and caller must insert the view into the layout explicitly

name: string

The name of the component. Must be unique within the owning application.

options: ViewState
targetView?: Identity
uuid: string

Universally unique identifier of the application that owns the component.

""