删除制图表达 (制图)

许可等级:BasicStandardAdvanced

摘要

从地理数据库要素类中删除要素类制图表达。

用法

语法

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