Visible Property



 
The Visible property indicates if the window is visible.


Syntax

    [boolean=] SiteKioskWindow.Visible
Possible Values
    Boolean value. True if the window is visible.
    False if the window is not visible.

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

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

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

Back to top