リプレゼンテーションの削除(Drop Representation) (カートグラフィ)

サマリ

ジオデータベース フィーチャクラスからフィーチャクラス リプレゼンテーションを削除します。

使用法

構文

DropRepresentation_cartography (in_features, representation)
パラメータ説明データ タイプ
in_features

リプレゼンテーション(1 つまたは複数)が格納されている入力フィーチャ レイヤ

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.
 
# 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)

環境

このツールは、ジオプロセシング環境を使用しません

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: 必須 ◎
ArcInfo: 必須 ◎

7/10/2012