ClearEnvironment (arcpy)
サマリ
Resets a specific environment setting to its default.
構文
ClearEnvironment (environment_name)
パラメータ | 説明 | データ タイプ |
environment_name |
The name of the environment setting that will be reset to its default setting. | String |
コードのサンプル
ClearEnvironment example
Sets the specified environment setting back to its default.
import arcpy
from arcpy import env
env.workspace = "C:/Data/World.gdb"
# prints C:/Data/World.gdb
print env.workspace
arcpy.ClearEnvironment("workspace")
# prints None
print env.workspace
関連トピック
9/14/2013