Provides access to members that modify the indexes collection.
Members
| Name | Description | |
|---|---|---|
![]() |
AddIndex | Add an index to the indexes collection. |
![]() |
DeleteAllIndexes | Delete all the indexes from the indexes collection. |
![]() |
DeleteIndex | Delete an index from the indexes collection. |
![]() |
FindIndex | Finds the position of the named index in the indexes collection. |
![]() |
FindIndexesByFieldName | The set of indexes for a given field name (if any). |
![]() |
Index | The index at the specified position. |
![]() |
Index | The index at the specified position in the indexes collection. |
![]() |
IndexCount | The number of indexes in this indexes collection. |
![]() |
IndexCount | The number of indexes in the indexes collection. |
IIndexesEdit.AddIndex Method
Add an index to the indexes collection.
Public Sub AddIndex ( _
    ByVal Index As IIndex _
)
public void AddIndex (
    IIndex Index
);
IIndexesEdit.DeleteAllIndexes Method
Delete all the indexes from the indexes collection.
Public Sub DeleteAllIndexes ( _
)
public void DeleteAllIndexes (
);
IIndexesEdit.DeleteIndex Method
Delete an index from the indexes collection.
Public Sub DeleteIndex ( _
    ByVal Index As IIndex _
)
public void DeleteIndex (
    IIndex Index
);
IIndexesEdit.Index Property
The index at the specified position.
Public Sub set_Index ( _
    ByVal pos As Integer, _
    ByVal A_2 As IIndex _
)
public void set_Index (
    int pos,
    IIndex A_2
);
IIndexesEdit.Index Property
The index at the specified position.
Public Sub set_Index ( _
    ByVal pos As Integer, _
    ByVal A_2 As IIndex _
)
public void set_Index (
    int pos,
    IIndex A_2
);
IIndexesEdit.IndexCount Property
The number of indexes in this indexes collection.
Public WriteOnly Property IndexCount_2
public void IndexCount_2 {set;}
IIndexesEdit.IndexCount Property
The number of indexes in this indexes collection.
Public WriteOnly Property IndexCount_2
public void IndexCount_2 {set;}
Inherited Interfaces
| Interfaces | Description |
|---|---|
| IIndexes | Provides access to members that return information about the index collection. |
Classes that implement IIndexesEdit
| Classes | Description |
|---|---|
| Indexes | Esri Indices object. |
When using C# (and other .NET languages) you must append an "_2" to the property you want to set on this interface. For example indexesEdit.IndexCount_2 = 3.
When using VB.NET (and other .NET languages) you must append an "_2" to the property you want to set on this interface. For example indexesEdit.IndexCount_2 = 3.



