ClearEnvironment

Cette documentation ArcGIS 2.7 a été archivée et n’est plus mise à jour. Certains contenus et liens peuvent être obsolètes. Consultez la dernière version de la documentation.

Résumé

Resets a specific environment setting to its default.

Syntaxe

ClearEnvironment (environment_name)
ParamètreExplicationType de données
environment_name

The name of the environment setting that will be reset to its default setting.

String

Exemple de code

ClearEnvironment example

Sets the specified environment setting back to its default.

import arcpy

arcpy.env.workspace = "c:/data/world.gdb"

# prints c:/data/world.gdb
print(arcpy.env.workspace)

arcpy.ClearEnvironment("workspace")

# prints None
print(arcpy.env.workspace)

Rubriques connexes