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