ComputersCol Collection
The ComputersCol collection contains SiteCafe computers.
Members Table
The following table lists the members provided by the ComputersCol collection.
|
Properties |
Description |
Count |
Contains the number of computers. |
|
Methods |
Description |
Item |
Returns one item of the collection. |
|
Remarks
This object is returned by the GetComputers method.
Use the ComputersCol collection to receive information about a computer.
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