AppBox.getAddressBar

Syntax

getAddressBar();

Description

The getAddressBar method returns address bar of Foresight Analytics Platform web application.

Comments

The method returns value of the PP.Application.AddressBar type.

Example

To execute the example, open Foresight Analytics Platform web application.

Set address bar height:

// Get application container
var appBox = PP.App.getAppBox(); // Get address bar var addressBar = appBox.getAddressBar(); // Set address bar height addressBar.setHeight(20);

After executing the example address bar height is changed.

See also:

AppBox