Help > Web Development > Object Reference > Object Reference > ISYSResultList > NumberDocs Property
<a name="kanchor506"></a>ISYSResultList:NumberDocs Property
Returns the number of found documents in the result list. Same as length. Read-Only.

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

See Also