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

    An object which holds the data to render a menu bar item.

    interface IRenderData {
        active: boolean;
        disabled?: boolean;
        onfocus?: (event: FocusEvent) => void;
        tabbable: boolean;
        title: Title<Widget>;
    }
    Index

    Properties

    active: boolean

    Whether the item is the active item.

    disabled?: boolean

    Whether the item is disabled.

    A disabled item cannot be active. A disabled item cannot be focussed.

    onfocus?: (event: FocusEvent) => void
    tabbable: boolean

    Whether the user can tab to the item.

    title: Title<Widget>

    The title to be rendered.