AboutSupportDeveloper GuideVersion 22.3.18
ShowHideTabsConfig: {
    disabled?: boolean;
    tabsHiddenIconUrl?: {
        disabled?: string;
        enabled?: string;
    };
    tabsShownIconUrl?: {
        disabled?: string;
        enabled?: string;
    };
    type: ShowHideTabs;
}

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

Type declaration

  • Optionaldisabled?: boolean
  • OptionaltabsHiddenIconUrl?: {
        disabled?: string;
        enabled?: string;
    }
    • 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.

  • OptionaltabsShownIconUrl?: {
        disabled?: string;
        enabled?: string;
    }
    • 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.

  • type: ShowHideTabs
const showHideTabsConfig: ShowHideTabsConfig = {
type: BrowserButtonType.ShowHideTabs,
disabled: false
};