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