Help > Web Development > Object Reference > Object Reference > ISYSCatalog > Name Property
<a name="kanchor254"></a>ISYSCatalog:Name Property
Returns the name of the catalog item at the specified index. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSCatalog.Name(long Index) as string
[C#]
string IISYSCatalog.get_Name(
  long Index);
[ColdFusion/Java]
java.lang.String ISYSCatalog.Name(
  long Index
) throws ComException;
Parameters
IndexThe index of the item whose name is requested

Examples
[VBScript]
<% set catalog = Application("ISYS").OpenCatalog for i = 1 to catalog.Length Response.Write "<OPTION name=""" & catalog.Path(i) & """>" & _ catalog.Name(i) & "</OPTION>" next %>