GetUsers Method



 
The GetUsers method returns a range of users.


Syntax

    [obj=] SiteCafe.Server.Users.GetUsers(start, maxCount)
    
Parameters
    start Long value that specifies the start user.
    maxCount Long value that specifies the maximum number of users.
Return Value
    Returns a UsersCol collection containing the specified users.
Remarks
    None.
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