AppBox.getAddressBar

Syntax

getAddressBar();

Description

The getAddressBar method returns address bar of Prognoz Platform 9 web application.

Comments

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

Example

To execute the example, open Prognoz Platform 9 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