BorderVisible Property



 
The BorderVisible property reads or sets the visibility status of the border.


Syntax

    SiteKioskWindow.SiteKioskWebBrowser.BorderVisible [=boolean]
Possible Values
    Boolean value. True if the border is visible.
    False if the border is invisible.

    The property is read/write.
Remarks
    None.
Examples
    The following example reads the BorderVisible property and shows it in an alert window.

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

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

Back to top