UserProperty Object
The UserProperty object provides user property information.
Members Table
The following table lists the members provided by the UserProperty object.
| |
| Properties |
Description |
| Index |
Index number. |
| Name |
Name of the property. |
| UserIndex |
User index number. |
| Value |
Value of the property. |
| |
Remarks
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