Back

IsNavBarOnRight

Hello World

Checks if the Navigation Bar is on the righthand side of the display.

app.IsNavBarOnRight() → boolean

Example - Check NavBar is on the Dark Side

function OnStart()
{
    var navOnRight = app.IsNavBarOnRight();
    app.Alert( navOnRight, "NavBar on right" );
}
    Copy     Copy All       Run