ListIndexes (arcpy)

Resumen

Lists the indexes in a feature class, shapefile, or table in a specified dataset. The Python List returned can be limited with search criteria for index name and will contain index objects.

Sintaxis

ListIndexes (dataset, {wild_card})
ParámetroExplicaciónTipo de datos
dataset

The specified feature class or table whose indexes will be returned.

String
wild_card

El comodín limita los resultados que se obtienen. Si no se especifica ningún comodín, se obtienen todos los valores.

String
Valor de retorno
Tipo de datosExplicación
Index

A Python List containing Index objects is returned.

Ejemplo de código

ListIndexes example

List index properties.

import arcpy

fc = "C:/Data/roads.shp" 

# Get list of indexes for roads.shp and print properties to interactive window
#
indexes = arcpy.ListIndexes(fc) 
for index in indexes: 
    print  "%-11s : %s" %("Name",index.name)
    print  "%-11s : %s" %("IsAscending",index.isAscending) 
    print  "%-11s : %s" %("IsUnique",index.isUnique)

Temas relacionados

9/11/2013