LanguageInfo Object



 
The LanguageInfo object contains information about the different skin languages.


Members Table

    The following table lists the members provided by the LanguageInfo object.

    Members
    Properties Description
    Enabled If the language is enabled.
    EnglishName English name for the language.
    LangID ID of the language.
    Name Name of the language.

Remarks
    This object is returned by the Item method. Use the LanguageInfo object to determine the name or ID of the language.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
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