ListToolboxes

Zusammenfassung

Lists the geoprocessing toolboxes, limited by name. A Python List is returned from the function.

Syntax

ListToolboxes ({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 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


7/10/2012