LangID Property



 
The LangID property contains the language ID.


Syntax

    [long=] SiteKioskWindow.SkinLanguages.Item(index).LangID
Possible Values
    Long value that retrieves the language ID.

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

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

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

Back to top