UserIndex Property



 
The UserIndex property contains the index of the user.


Syntax

    [long=] ChatUser.UserIndex
    
Possible Values
    Long value that retrieves the user index.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the index of the first chat user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    user = SiteCafe.Server.Chat.GetUser(1);
    alert(user.UserIndex);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top