Item Method
The Item method returns one item of the collection.
Syntax
[obj=] AdminsCol.Item(index)
|
Parameters
index |
Long value that contains the item number to return. |
Return Value
Returns an Admin object representing the specified admin.
Remarks
Collection-index values are 1-based.
Examples
The following example displays the name of the first admin.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
admins = SiteCafe.Server.Admins.GetAdmins(1, 10);
alert(admins.Item(1).Name);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top