FlatStyle Property
The FlatStyle property indicates if the browser border looks flat or not.
Syntax
SiteKioskWindow.SiteKioskWebBrowser.flatstyle [=boolean]
|
Possible Values
Boolean value. True for a flat style layout.
False for a normal layout.
|
The property is read/write.
Remarks
Examples
The following example reads the FlatStyle property and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKioskWindow.SiteKioskWebBrowser.FlatStyle);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top