AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface LayoutAccessibilityOptions

    Accessibility options for layout tab navigation and ARIA support.

    interface LayoutAccessibilityOptions {
        focusContentHotkey?: string | false;
        viewTabOptions?: ViewTabAccessibilityOptions;
    }
    Index
    focusContentHotkey?: string | false

    Keyboard shortcut used to move focus from a tab header element into the active tab's web content.

    • Accepts an accelerator-like string, e.g. 'Ctrl+Enter', 'Meta+Enter', 'Alt+Enter', 'Mod+Enter'.
    • 'Mod'/'CmdOrCtrl'/'CtrlOrMeta' means Ctrl on Windows/Linux or Meta on macOS.
    • Set to false to disable this shortcut.
    • In core-web, reverse focus transfer (from iframe web content back to tab header) is not reliably supportable due to browser iframe security and cross-origin focus restrictions. This hotkey is intentionally one-way: tab header -> web content.
    'Mod+Enter'