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