Help > Web Development > Object Reference > Object Reference > ISYSCategoryList
<a name="kanchor266"></a>ISYSCategoryList Object
Contains a list of categories that apply to the result list.
ISYSCategoryList Methods
SortSort the category list.
ISYSCategoryList Properties
CountIndicates the number of items in the list. Read-Only.
ItemAllows random access to individual items within the list.
Examples
[VBScript]
<% ' This sample demonstrates enumerating the categories in the result list displaying ' them in a table ' Execute a pre-configured search Set Results = ISYSSearch.Execute %> <table> <% For Each Category in Results.Categories %> <tr> <td><%= Category.Name %></td> <td><%= Category.Count %></td> </tr> <% Next %> </table>
See Also
ISYSResultList::Categories
ISYSCategory