ChatUsersCol Collection



 
The ChatUsersCol collection contains SiteCafe chat users.


Members Table

    The following table lists the members provided by the ChatUsersCol collection.

    Members
    Properties Description
    Count Contains the number of chat users.
    Methods Description
    Item Returns one item of the collection.

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