OpenFin Workspace Platform API
    Preparing search index...

    Type Alias ShowHideTabsConfig

    Configuration Object for the show/hide tabs button within the browser toolbar

    const showHideTabsConfig: ShowHideTabsConfig = {
    type: BrowserButtonType.ShowHideTabs,
    disabled: false
    };
    type ShowHideTabsConfig = {
        disabled?: boolean;
        tabsHiddenIconUrl?: { disabled?: string; enabled?: string };
        tabsShownIconUrl?: { disabled?: string; enabled?: string };
        type: ShowHideTabs;
    }
    Index
    disabled?: boolean
    tabsHiddenIconUrl?: { disabled?: string; enabled?: string }

    Type Declaration

    • Optionaldisabled?: string

      The URL of the icon to display when the button is disabled and tabs are hidden.

      The button is disabled when the page is locked.

    • Optionalenabled?: string

      The URL of the icon to display when the button is enabled and tabs are hidden.

    tabsShownIconUrl?: { disabled?: string; enabled?: string }

    Type Declaration

    • Optionaldisabled?: string

      The URL of the icon to display when the button is disabled and tabs are hidden.

      The button is disabled when the page is locked.

    • Optionalenabled?: string

      The URL of the icon to display when the button is enabled and tabs are hidden.