ClearCacheOnStartup Property
The ClearCacheOnStartup property indicates if the cache is to be cleared on startup.
Syntax
[bool=] SiteKiosk.Plugins("SiteCoach").ClearCacheOnStartup
|
Possible Values
Boolean value that retrieves if the cache is to be cleared.
|
The property is read only.
Remarks
Examples
The following example determines if the cache is to be cleared on startup and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCoach").ClearCacheOnStartup);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top