ListIndexes (arcpy)
Récapitulatif
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.
Syntaxe
ListIndexes (dataset, {wild_card})
| Paramètre | Explication | Type de données | 
| dataset | The specified feature class or table whose indexes will be returned. | String | 
| wild_card | Un caractère générique limite les résultats renvoyés. Si aucun caractère générique n'est spécifié, toutes les valeurs sont renvoyées. | String | 
Exemple de code
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)
Thèmes connexes
9/12/2013