GetUsers Method
The GetUsers method returns a range of chat users.
Syntax
[obj=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
Chat.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 ChatUsersCol collection containing the specified users.
Remarks
Examples
The following example displays the number of chat users (maximum 100).
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
users = SiteCafe.Chat.GetUsers(1, 100);
alert(users.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top