Enabled Property



 
The Enabled property indicates if the SiteKiosk screensaver has been enabled in the configuration.


Syntax

    [bool=] SiteKiosk.ScreenSaver.Enabled
Possible Values
    Boolean value that retrieves the enabled status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if the screensaver has been enabled in the configuration and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.ScreenSaver.Enabled);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top