Index Property



 
The Index property contains the index number of the statistics.


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example displays the 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).Index);
    </SCRIPT>
    

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

Back to top