Theia API Documentation v1.65.0
    Preparing search index...

    Interface IOptions<T>

    An options object for initializing a title.

    interface IOptions<T> {
        caption?: string;
        className?: string;
        closable?: boolean;
        dataset?: Dataset;
        icon?: IRenderer;
        iconClass?: string;
        iconLabel?: string;
        label?: string;
        mnemonic?: number;
        owner: T;
    }

    Type Parameters

    • T
    Index

    Properties

    caption?: string

    The caption for the title.

    className?: string

    The extra class name for the title.

    closable?: boolean

    The closable state for the title.

    dataset?: Dataset

    The dataset for the title.

    icon?: IRenderer

    The icon renderer for the title.

    iconClass?: string

    The icon class name for the title.

    iconLabel?: string

    The icon label for the title.

    label?: string

    The label for the title.

    mnemonic?: number

    The mnemonic index for the title.

    owner: T

    The object which owns the title.