SCION Workbench Client - v1.0.0-beta.35
    Preparing search index...

    Interface DockedPartExtras

    Controls the appearance of a docked part and its toggle button.

    A docked part is a part that is docked to the left, right, or bottom side of the workbench.

    interface DockedPartExtras {
        icon: string;
        label: string;
        tooltip?: string;
    }
    Index

    Properties

    Properties

    icon: string

    Specifies the icon (key) displayed in the toggle button.

    Refer to the documentation of the workbench host application for available icons.

    label: string

    Specifies the label displayed in the toggle button.

    Can be text or a translation key. A translation key starts with the percent symbol (%) and may include parameters in matrix notation for text interpolation.

    Text and interpolation parameters can reference capability parameters and resolvers using the colon syntax. See resolve for defining resolvers.

    tooltip?: string

    Specifies the tooltip displayed when hovering over the toggle button.

    Can be text or a translation key. A translation key starts with the percent symbol (%) and may include parameters in matrix notation for text interpolation.

    Text and interpolation parameters can reference capability parameters and resolvers using the colon syntax. See resolve for defining resolvers.