Enabled Property



 
The Enabled property indicates if the language is enabled.


Syntax

    [bool=] SiteKioskWindow.SkinLanguages.Item(index).Enabled
Possible Values
    Boolean value that retrieves if the language is enabled.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the enabled status of the first language in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKioskWindow.SkinLanguages.Item(1).Enabled);
    </SCRIPT>
    

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

Back to top