Name Property



 
The Name property contains the name of the property.


Syntax

    UserProperty.Name [=str]
    
Possible Values
    Long value that specifies or retrieves the name.

    The property is read/write.
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