Help > Web Development > Object Reference > Object Reference > ISYSResultList > Statistics Property
<a name="kanchor525"></a>ISYSResultList:Statistics Property
Returns information about search token statistics. It contains information about each token searched on, allowing for wildcards, synonyms, conflation and thesaurus.

Syntax
[VBScript]
ReadOnly property ISYSResultList.Statistics as ISYSSearchStatList
[C#]
IISYSSearchStatList  ISYSResultList.Statistics {get;}
[ColdFusion/Java]
IISYSSearchStatList  ISYSResultList.Statistics() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates enumerating the token statistics in the result list displaying ' them in a table ' Execute a pre-configured search Set Results = ISYSSearch.Execute %> <table> <% For Each Statistic in Results.Statistics %> <tr> <td><%= Statistic.Name %></td> <td><%= Statistic.Value %></td> </tr> <% Next %> </table>

Remarks
The statistics list is comparable to the Word List in ISYS:query.

See Also