Repräsentation löschen (Cartography)

Zusammenfassung

Hiermit wird eine Feature-Class-Repräsentation aus einer Geodatabase-Feature-Class gelöscht.

Verwendung

Syntax

DropRepresentation_cartography (in_features, representation)
ParameterErläuterungDatentyp
in_features

Der Eingabe-Feature-Layer, der Repräsentationen enthält.

Feature Layer
representation

Die zu löschende Feature-Class-Repräsentation.

String

Codebeispiel

Werkzeug "DropRepresentation" – Beispiel (Python-Fenster)

Das folgende Skript im Python-Fenster veranschaulicht, wie Sie das Werkzeug "DropRepresentation" im unmittelbaren Modus verwenden.

import arcpy
from arcpy import env
env.workspace = "C:/data"
arcpy.DropRepresentation_cartography("footprints.lyr", "footprints_Rep")
Werkzeug "DropRepresentation" – Beispiel (eigenständiges Python-Skript)

Dieses eigenständige Skript stellt ein Beispiel für die Verwendung des Werkzeugs "DropRepresentation" dar.

# Name: DropRepresentation_standalone_script.py
# Description: Deletes a feature class representation from a geodatabase feature class.
 
# 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)

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Verwandte Themen

Lizenzinformationen

ArcView: Nein
ArcEditor: Ja
ArcInfo: Ja

7/10/2012