UsersCol Collection
The UsersCol collection contains SiteCafe users.
Members Table
The following table lists the members provided by the UsersCol collection.
|
Properties |
Description |
Count |
Contains the number of users. |
|
Methods |
Description |
Item |
Returns one item of the collection. |
|
Remarks
This object is returned by the GetUsers method.
Use the UsersCol collection to receive information about a user.
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