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