Name Property



 
The Name property contains the name of the language.


Syntax

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

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

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

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

Back to top