StatusBar Property
The StatusBar property indicates if a status bar is shown.
Syntax
[boolean=] SiteKioskWindow.SiteKioskWebBrowser.StatusBar
|
Possible Values
Boolean value. True if the status bar will be displayed.
False if there is no status bar.
|
The property is read only.
Remarks
Examples
The following example reads the StatusBar property and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKioskWindow.SiteKioskWebBrowser.StatusBar);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top