GetProperties Method



 
The GetProperties method returns a range of user properties.


Syntax

    [obj=] User.GetProperties(start, maxCount)
    
Parameters
    start Long value that specifies the start property.
    maxCount Long value that specifies the maximum number of properties.
Return Value Remarks
    None.
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