支持维护附件环境设置的工具可将附件从输入要素复制到输出要素中。
用法说明
对话框语法
维护附件- 选中 - 附件将复制到输出要素类中。这是默认设置。
- 取消选中 - 附件将不复制到输出中。
脚本语法
arcpy.env.maintainAttachments = True
参数 | 说明 |
---|---|
boolean_option | 指定是否将附件复制到输出要素中。默认名称为 True。 |
import arcpy
# Set the maintainAttachments environment to False (no attachment copy).
arcpy.env.maintainAttachments = False