Item Method
The Item method returns one item of the collection.
Syntax
[obj=] ComputersCol.Item(index)
|
Parameters
index |
Long value that contains the item number to return. |
Return Value
Returns a Computer object representing the specified computer.
Remarks
Collection-index values are 1-based.
Examples
The following example displays the IP address of the first computer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
computers = SiteCafe.Server.Computers.GetComputers(1, 10);
alert(computers.Item(1).IPAddress);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top