GetProperty Method



 
The GetProperty method returns an user property.


Syntax

    [obj=] User.GetProperty(name)
    
Parameters
    name String that specifies the name of the property.
Return Value
    Returns an UserProperty object that represents the property.
Remarks
    None.
Examples
    The following example displays the value 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').Value);
    </SCRIPT>
    

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

Back to top