ListTools

Zusammenfassung

Lists the geoprocessing tools, limited by name. A Python list is returned from the function.

Syntax

ListTools ({wild_card})
ParameterErläuterungDatentyp
wild_card

Der Platzhalter schränkt die zurückgegebenen Ergebnisse ein. Wenn kein Platzhalter angegeben wird, werden alle Werte zurückgegeben.

String
Rückgabewert
DatentypErläuterung
String

The Python List returned from the function containing geoprocessing tool names, limited by the optional wild card.

Codebeispiel

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)

Verwandte Themen


7/10/2012