UserPropertiesCol Collection



 
The UserPropertiesCol collection contains user properties.


Members Table

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

    Members
    Properties Description
    Count Contains the number of user properties.
    Methods Description
    Item Returns one item of the collection.

Remarks
    This object is returned by the GetProperties method. Use the UserPropertiesCol collection to receive information about a user property.

Examples
    The following example displays the name of the first user's first property.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    user = SiteCafe.Server.Users.GetUserByIndex(1);
    properties = user.GetProperties(1, 10);
    alert(properties.Item(1).Name);
    </SCRIPT>
    

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

Back to top