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" );
}