删除制图表达 (制图)
摘要
从地理数据库要素类中删除要素类制图表达。
用法
-
从要素类中删除要素类制图表达后,也将删除所有与此制图表达关联的制图表达规则和覆盖。不会删除源要素类中的要素。
-
编辑会话期间,不能从要素类中删除要素类制图表达。删除制图表达属于方案变更,在编辑会话下将阻止此类方案变更。
语法
DropRepresentation_cartography (in_features, representation)
参数 | 说明 | 数据类型 |
in_features |
包含制图表达的输入要素图层。 | Feature Layer |
representation |
要删除的要素类制图表达。 | String |
代码实例
DropRepresentation 工具示例(Python 窗口)
以下 Python 窗口脚本演示了如何在即时模式下使用 DropRepresentation 工具。
import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.DropRepresentation_cartography("footprints.lyr", "footprints_Rep")
DropRepresentation 工具示例(独立 Python 脚本)
此独立脚本显示的是使用 DropRepresentation 工具的示例。
# Name: DropRepresentation_standalone_script.py
# Description: Deletes a feature class representation from a geodatabase feature class.
# 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"
# Execute Drop Representation
arcpy.DropRepresentation_cartography(in_features, representation)
环境
此工具不使用任何地理处理环境
相关主题
许可信息
ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 是
ArcGIS for Desktop Advanced: 是
5/10/2014