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