Index Property



 
The Index property contains the index number of the property.


Syntax

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

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

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

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

Back to top