Count Property
The Count property contains the number of chat users.
Syntax
[long=] ChatUsersCol.Count
|
Possible Values
Long value that retrieves the number of users.
|
The property is read only.
Remarks
Examples
The following example displays the number of chat users (maximum 100).
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
users = SiteCafe.Server.Chat.GetUsers(1, 100);
alert(users.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top