Count Property
The Count property contains the number of user properties.
Syntax
[long=] UserPropertiesCol.Count
|
Possible Values
Long value that retrieves the number of properties.
|
The property is read only.
Remarks
Examples
The following example displays the number of properties of the first user (maximum is 100).
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
user = SiteCafe.Server.Users.GetUserByIndex(1);
properties = user.GetProperties(1, 100);
alert(properties.Count);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top