Help > Web Development > Object Reference > Object Reference > ISYSResultList > Length Property
<a name="kanchor502"></a>ISYSResultList:Length Property
Returns the number of documents in the result list, adjusted for sub-queries and filters. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSResultList.Length as long
[C#]
long IISYSResultList.Length {get;}
[ColdFusion/Java]
long ISYSResultList.Length() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates removing documents from a result list ' Execute a pre-configured search set Results = ISYSSearch.Execute ' Enumerate each of the documents in the result list For i = 1 to Results.Length document = Results(i) ' ... Next %>