ListIndexes
サマリ
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.
構文
ListIndexes (dataset, {wild_card})
パラメータ | 説明 | データ タイプ |
dataset |
The specified feature class or table whose indexes will be returned. | String |
wild_card |
ワイルドカードを使用して、返される結果を絞り込むことができます。ワイルドカードを指定しない場合は、すべての値が返されます。 | String |
データ タイプ | 説明 |
Index |
A Python List containing Index objects is returned. |
コードのサンプル
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)
関連項目
7/10/2012