ListToolboxes (arcpy)
Resumen
Lists the geoprocessing toolboxes, limited by name. A Python List is returned from the function.
Sintaxis
ListToolboxes ({wild_card})
Parámetro | Explicación | Tipo de datos |
wild_card |
El comodín limita los resultados que se obtienen. Si no se especifica ningún comodín, se obtienen todos los valores. | String |
Tipo de datos | Explicación |
String |
The Python List returned from the function containing geoprocessing toolbox names, limited by the optional wild card. |
Ejemplo de código
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
Temas relacionados
9/11/2013