ComputerIndex Property



 
The ComputerIndex property contains the computer index number of the statistics.


Syntax

    [long=] ComputerStat.ComputerIndex
    
Possible Values
    Long value that retrieves the index.

    The property is read only.
Remarks
    None.
Examples
    The following example displays the computer index number of the first computer's first statistics.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    cStats = SiteCafe.Server.ComputerStats.GetComputerStats(1, 0, 0, 1, 10);
    alert(cStats.Item(1).ComputerIndex);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top