Item Method



 
The Item method returns one item of the collection.


Syntax

    [long=] SiteCafe.LocaleManager.Languages.Item(index)
    
Parameters
    index Long value that contains the item number to return.
Return Value
    Returns a Long value containing the language ID.
Remarks
    Collection-index values are 1-based.
Examples
    The following example displays the first available language ID.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteCafe.LocaleManager.Languages.Item(1));
    </SCRIPT>
    

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

Back to top