オーバーライドの解除(Remove Override) (カートグラフィ)

サマリ

フィーチャクラス リプレゼンテーションに属しているフィーチャのジオメトリおよびプロパティのリプレゼンテーション オーバーライドを解除します。

使用法

構文

RemoveOverride_cartography (in_features, representation, {remove_option})
パラメータ説明データ タイプ
in_features

少なくとも 1 つのリプレゼンテーションが含まれる入力フィーチャ レイヤ。

Feature Layer
representation

リプレゼンテーション オーバーライドを解除する対象となるリプレゼンテーション。

String
remove_option
(オプション)

解除するオーバーライドのタイプを指定します。

  • BOTHジオメトリとプロパティの両方のリプレゼンテーション オーバーライドを解除します。これがデフォルトです。
  • GEOMETRY_OVERRIDEジオメトリのリプレゼンテーション オーバーライドだけを解除します。
  • REPRESENTATION_PROPERTY_OVERRIDEプロパティのリプレゼンテーション オーバーライドだけを解除します。
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.
 
# 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)

環境

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

関連項目

ライセンス情報

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

7/10/2012