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