ListToolboxes (arcpy)
Zusammenfassung
Lists the geoprocessing toolboxes, limited by name. A Python List is returned from the function.
Syntax
ListToolboxes ({wild_card})
Parameter | Erläuterung | Datentyp |
wild_card |
Der Platzhalter schränkt die zurückgegebenen Ergebnisse ein. Wenn kein Platzhalter angegeben wird, werden alle Werte zurückgegeben. | String |
Datentyp | Erläuterung |
String |
The Python List returned from the function containing geoprocessing toolbox names, limited by the optional wild card. |
Codebeispiel
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
Verwandte Themen
9/11/2013