Provides access to members that return information about the index.
Members
Name | Description | |
---|---|---|
Fields | The fields collection for this index. | |
IsAscending | Indicates if the index is based on ascending order. | |
IsUnique | Indicates if the index is unique. | |
Name | The name of the index. |
IIndex.Fields Property
The fields collection for this index.
Public ReadOnly Property Fields As IFields
public IFields Fields {get;}
IIndex.IsAscending Property
Indicates if the index is based on ascending order.
Public ReadOnly Property IsAscending As Boolean
public bool IsAscending {get;}
IIndex.IsUnique Property
Indicates if the index is unique.
Public ReadOnly Property IsUnique As Boolean
public bool IsUnique {get;}
Remarks
If IsUnique is true, the field the Index was created for must not have duplicate values.
IIndex.Name Property
The name of the index.
Public ReadOnly Property Name As String
public string Name {get;}
Classes that implement IIndex
Classes | Description |
---|---|
FullTextIndexDefinition | Esri FullTextIndex Definition object. |
Index | Esri Index object. |
XMLIndex | XML Index Object. |
Remarks
The IIndex interface is used for read-only access to the properties of an index.