EnglishName Property



 
The EnglishName property contains the English name for the language.


Syntax

    [str=] SiteKioskWindow.SkinLanguages.Item(index).EnglishName
Possible Values
    String that retrieves the english name of the language.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the English name for the first available language in an alert window.

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

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

Back to top