Help > Web Development > Object Reference > Object Reference > ISYSResultList > RealTotal Property
<a name="kanchor513"></a>ISYSResultList:RealTotal Property
Contains the total number of documents found, before any filtering, truncation or security checks have occurred. Read-Only.

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