papi-dts
    Preparing search index...
    DIRECTION_FROM_TAB: readonly [
        "nextTab",
        "previousTab",
        "nextTabGroup",
        "previousTabGroup",
        "nextTabOrGroup",
        "previousTabOrGroup",
        "nearTabOrNextGroup",
    ]

    Direction relative to a tab pointing to another tab. Can be used to navigate between tabs in the dock layout.

    Note: In the following descriptions, "forward"/"next" means right in LTR and left in RTL, and "backward"/"previous" means left in LTR and right in RTL

    • nextTab - go forward one tab. If there are no more tabs after this tab in this tab's tab group, go to the backward-most tab in the next tab group (useful for cycling through all tabs)
    • previousTab - go backward one tab. If there are no more tabs before this tab in this tab's tab group, go to the forward-most tab in the previous tab group (useful for cycling through all tabs)
    • nextTabGroup - go to the active tab in the tab group forward from the tab group this tab is in
    • previousTabGroup - go to the active tab in the tab group backward from the tab group this tab is in
    • nextTabOrGroup - go forward one tab. If there are no more tabs after this tab in this tab's tab group, go to the active tab in the next tab group
    • previousTabOrGroup - go backward one tab. If there are no more tabs before this tab in this tab's tab group, go to the active tab in the previous tab group
    • nearTabOrNextGroup - go forward or backward one tab if there is another in the same tab group. If there are no more tabs in this tab's tab group, go to the active tab in the next tab group (useful for closing a tab)