Creates an index for the Column which has the specified name.

Namespace:  ESRI.ArcGISExplorer.Data

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public Index CreateIndex(
	string name
)
Visual Basic (Declaration)
Public Function CreateIndex ( _
	name As String _
) As Index

Parameters

name
Type: System..::.String

The name of the index.

Return Value

An Index object which represents the physical index that has been created on disk.

Remarks

This is a convenience method for creating an single-column index. For greater flexibility when creating indexes, including creating multi-column indexes, consider using the Add(Index) method.

See Also