Select Feature By Override (Cartography) (ArcInfo only) |
|
Release 9.2
Last modified July 13, 2007 |
![]() ![]() ![]() Print all topics in : "Tools" |
Selects features within a feature class representation that have geometry and/or representation property overrides.
Usage tips
The input must be a geodatabase feature class with at least one feature class representation.
Identify a feature or features from a single feature class which have representation overrides.
Identify either geometry overrides or representation property overrides or both types of overrides.
The output is a selected set, so the results can only be used in models, scripts and in ArcMap sessions.
Command line syntax
An overview of the Command Line window
SelectFeatureByOverride_cartography <in_features> <BOTH | GEOMETRY_OVERRIDE | REPRESENTATION_PROPERTY_OVERRIDE>
Parameter | Explanation | Data Type |
<in_features> |
The input feature layer containing representations. |
Layer |
<BOTH | GEOMETRY_OVERRIDE | REPRESENTATION_PROPERTY_OVERRIDE> |
Specifies the override as feature selection criterion.
|
String |
SelectFeatureByOverride_cartography c:\workspace.mdb\roadmaps\roads.lyr REPRESENTATION_PROPERTY_OVERRIDE
Scripting syntax
About getting started with writing geoprocessing scripts
SelectFeatureByOverride_cartography (in_features, select_option)
Parameter | Explanation | Data Type |
in_features (Required) |
The input feature layer containing representations. |
Layer |
select_option (Required) |
Specifies the override as feature selection criterion.
|
String |
import arcgisscripting gp = arcgisscripting.create() gp.workspace = "c:\Workspace.mdb\roadmaps" gp.toolbox = "cartography" gp.SelectFeatureByOverride ("roads.lyr", "REPRESENTATION_PROPERTY_OVERRIDE")