ListToolboxes (arcpy)
サマリ
Lists the geoprocessing toolboxes, limited by name. A Python List is returned from the function.
構文
ListToolboxes ({wild_card})
パラメータ | 説明 | データ タイプ |
wild_card |
ワイルドカードを使用して、返される結果を絞り込むことができます。ワイルドカードを指定しない場合は、すべての値が返されます。 | String |
データ タイプ | 説明 |
String |
The Python List returned from the function containing geoprocessing toolbox names, limited by the optional wild card. |
コードのサンプル
ListToolboxes example
Lists specified toolboxes.
import arcpy
# Get a list of all toolboxes. Print to the interactive window.
#
toolboxList = arcpy.ListToolboxes()
for toolbox in toolboxList:
print toolbox
関連トピック
9/14/2013