UserIndex Property



 
The UserIndex property contains the user index number of the property.


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example displays the user index number of the property 'propertyName' of the first account's user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    user = SiteCafe.Server.Users.GetUserByAccount(1);
    alert(user.GetProperty('propertyName').UserIndex);
    </SCRIPT>
    

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

Back to top