Item Method



 
The Item method returns one item of the collection.


Syntax

    [obj=] SiteKioskWindow.SkinLanguages.Item(index)
    
Parameters
    index Long value that contains the item number to return.
Return Value
    Returns a LanguageInfo object that contains information about the specified language.
Remarks
    Collection-index values are 1-based.
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