Help > Web Development > Object Reference > Object Reference > ISYSResultList > SearchTerms Property
<a name="kanchor521"></a>ISYSResultList:SearchTerms Property
Returns the search terms valid for this result list, this list can be used to maintain hit color information. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSResultList.SearchTerms as ISYSSearchTermList
[C#]
IISYSSearchTermList  IISYSResultList.SearchTerms {get;}
[ColdFusion/Java]
IISYSSearchTermList  ISYSResultList.SearchTerms() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates enumerating the search terms of 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 <p> Search Terms: <% For Each Term in Results.SearchTerms %> <%= Term %> <% Next %>