Resumen
Lists the indexes in a feature class, shapefile, or table in a specified dataset. The list returned can be limited with search criteria for index name and will contain index objects.
Sintaxis
ListIndexes (dataset, {wild_card})
Parámetro | Explicación | Tipo de datos |
dataset | The specified feature class or table whose indexes will be returned. | String |
wild_card | The wild_card limits the results returned. If no wild_card is specified, all values are returned. | String |
Valor de retorno
Tipo de datos | Explicación |
Index | A list containing Index objects is returned. |
Muestra de código
ListIndexes example
List index properties.
import arcpy
featureclass = "c:/data/roads.shp"
# Get list of indexes for roads.shp and print properties
indexes = arcpy.ListIndexes(featureclass)
for index in indexes:
print("Name : {0}".format(index.name))
print("IsAscending : {0}".format(index.isAscending))
print("IsUnique : {0}".format(index.isUnique))