Help > Web Development > Object Reference > Object Reference > ISYSResultList > Categories Property
<a name="kanchor488"></a>ISYSResultList:Categories Property
Returns the categories that are applicable to the documents in the result list.

Syntax
[VBScript]
ReadOnly property ISYSResultList.Categories as ISYSCategoryList
[C#]
IISYSCategoryList  ISYSResultList.Categories {get;}
[ColdFusion/Java]
IISYSCategoryList  ISYSResultList.Categories() throws ComException;
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>

Remarks
The category list contains the categories for all the documents that are present in the result list. The categories are controlled via the Category Editor in ISYS:utilities.

See Also