ToolBar Property



 
The ToolBar property indicates if a tool bar is shown.


Syntax

    [boolean=] SiteKioskWindow.SiteKioskWebBrowser.ToolBar
Possible Values
    Boolean value. True if the tool bar is visible.
    False if the tool bar is not visible.

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

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

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

Back to top