Item Method



 
The Item method returns one item of the collection.


Syntax

    [obj=] SiteKiosk.LocaleManager.KeyboardLayouts.Item(index)
    
Parameters
    index Long value that contains the item number to return.
Return Value
    Returns a KeyboardLayout object that provides information about the keyboard layout.
Remarks
    Collection-index values are 1-based.
Examples
    The following example displays the name of the first available keyboard layout.

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

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

Back to top