Height Property



 
The Height property contains the height of the window.


Syntax

    [integer=] SiteKioskWindow.Height
Possible Values
    Integer that retrieves the height of the window.

    The property is read only.
Remarks
    None.
Examples
    The following example reads the Height property and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKioskWindow.Height);
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top