Help > Web Development > Object Reference > Object Reference > ISYSResultList > TotalHits Property
<a name="kanchor529"></a>ISYSResultList:TotalHits Property
Returns the total number of word hits found in the result list. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSResultList.TotalHits as long
[C#]
long IISYSResultList.TotalHits {get;}
[ColdFusion/Java]
long ISYSResultList.TotalHits() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates removing documents from a result list ' Execute a pre-configured search Set Results = ISYSSearch.Execute %> Your search for "<%= Results.QueryString %>" found <%= Results.TotalHits %> hits in <%= Results.NumberDocs %> documents