Item Method



 
The Item method returns one item of the collection.


Syntax

    [obj=] UsersCol.Item(index)
    
Parameters
    index Long value that contains the item number to return.
Return Value
    Returns a User object representing the specified user.
Remarks
    Collection-index values are 1-based.
Examples
    The following example displays the name of the first user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    users = SiteCafe.Server.Users.GetUsers(1, 10);
    alert(users.Item(1).Name);
    </SCRIPT>
    

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

Back to top