Help > Web Development > Object Reference > Object Reference > ISYSSearchTermList
<a name="kanchor556"></a>ISYSSearchTermList Object
Provides information about the search terms with in the result list. It can be used to customize the search term hit colors.
ISYSSearchTermList Properties
CountReturns the number of search terms associated with the result list. Read-Only.
ItemReturns the search term at the given index. Read-Only.
Examples
[VBScript]
<% ' Execute a pre-configured ISYSSearch object Set Results = ISYSSearch.Execute ' Get the document Set Document = Results(CLng("doc")) %> <% For Each Term in Document.SearchTerms %> <span style="color: <%= Term.FGColor %>; background-color: <%= Term.BGColor %>"> <%= Term.Value %> </span> <% Next %>
See Also
ISYSDocument::SearchTerms
ISYSSearchTerm