Item Method
The Item method returns one item of the collection.
Syntax
[obj=] UserPropertiesCol.Item(index)
|
Parameters
index |
Long value that contains the item number to return. |
Return Value
Returns an UserProperty object representing the specified property.
Remarks
Collection-index values are 1-based.
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