GetName Method



 
The GetName method determines the name of a language.


Syntax

    [str=] SiteCafe.LocaleManager.GetName(langID)
    
Parameters
    langID Long value that specifies the language ID.
Return Value
    Returns a String that contains the name of the language.
Remarks
    None.
Examples
    The following example displays the name of the current language.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    curLan = SiteCafe.LocaleManager.CurrentLanguage;
    alert(SiteCafe.LocaleManager.GetName(curLan));
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top