ContentSelectable Property
The ContentSelectable property indicates whether the content displayed by the web browser can be selected or not.
Syntax
SiteKioskWindow.SiteKioskWebBrowser.ContentSelectable [=boolean]
|
Possible Values
Boolean value. True if the content is selectable.
False if the content cannot be selected.
|
The property is read/write.
Remarks
Examples
The following example reads the ContentSelectable property and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKioskWindow.SiteKioskWebBrowser.ContentSelectable);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top