FilterState Property
The FilterState property indicates if the Content Filter plugin is active.
Syntax
SiteKiosk.Plugins("SiteCoach").FilterState [=bool]
|
Possible Values
Boolean value that specifies or retrieves if the filter is active.
|
The property is read/write.
Remarks
Examples
The following example determines if the filter is active and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCoach").FilterState);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top