描述
将几何和/或属性制图表达覆盖从参与要素类制图表达的要素中移除。
使用
不会删除要素,仅会删除制图表达覆盖。
移除选项参数用于指定将移除哪一类型的制图表达覆盖。
- 移除几何覆盖会将要素与其 Shape 字段中存储的几何重新关联。备用的制图表达几何将被删除。几何覆盖有时被称为形状覆盖。
- 移除属性覆盖会移除所有特定于要素的属性覆盖,还会根据原生制图表达规则恢复要素状态。
语法
RemoveOverride(in_features, representation, {remove_option})
参数 | 说明 | 数据类型 |
in_features | 包含至少一个制图表达的输入要素图层。 | Feature Layer |
representation | 要从中移除制图表达覆盖的制图表达。 | String |
remove_option (可选) | 指定将移除哪些类型的覆盖。
| String |
代码示例
RemoveOverride 工具示例(Python 窗口)
以下 Python 窗口脚本演示了如何在立即模式下使用 RemoveOverride 工具。
import arcpy from arcpy import env env.workspace = "C:/data" arcpy.RemoveOverride_cartography("footprints.lyr", "footprints_Rep", "BOTH")
RemoveOverride 工具示例(独立 Python 脚本)
此独立脚本显示的是使用 RemoveOverride 工具的示例。
# Name: RemoveOverride_standalone_script.py
# Description: Removes geometry and/or property representation overrides from features participating in a feature class representation.
# Author: ESRI
# Import system modules
import arcpy
from arcpy import env
# Set environment settings
env.workspace = "C:/data"
# Set local variables
in_features = "footprints.lyr"
representation = "footprints_Rep"
remove_option = "BOTH"
# Execute Remove Override
arcpy.RemoveOverride_cartography(in_features, representation, remove_option)
环境
此工具不使用任何地理处理环境。
许可信息
- Basic: 否
- Standard: 是
- Advanced: 是