AddToolbox
Zusammenfassung
Greift anhand des Pfads oder des Aliasnamens auf die angegebene Toolbox zu. Mit "AddToolbox" wird die angegebene Toolbox der aktuellen Geoverarbeitungssitzung hinzugefügt, damit der Zugriff auf die Werkzeuge in der Toolbox ermöglicht wird.
Syntax
Parameter | Erläuterung | Datentyp |
toolbox |
The name, including path, or alias, of the toolbox to be added to the current geoprocessing session. Place the name/path, or alias, string inside double quotes. Server toolboxes can also be added using a semicolon delimiter. The name, including path, or alias, of the toolbox to be added to the current geoprocessing session. Place the name/path, or alias, string inside double quotes. Server toolboxes can also be added using a semicolon delimiter.
| String |
Codebeispiel
Die angegeben Toolbox wird der aktuellen Geoverarbeitungssitzung hinzugefügt.
import arcpy # Add a toolbox to a session # arcpy.AddToolbox("c:/mytoolboxes/operations.tbx") arcpy.gp.CustomTool()