Drop Visual Specifications (Production Mapping)

许可等级:BasicStandardAdvanced

摘要

Removes the fields associated with visual specifications from the selected feature layers and feature classes.

用法

语法

DropVisualSpecifications_production (in_features, vs_workspace, specifications)
参数说明数据类型
in_features
[in_features,...]

The feature layers, feature classes, or tables for which you want to remove the fields associated with visual specifications.

Table View
vs_workspace

The workspace containing the visual specifications table. The visual specification table can be stored in a personal, file, or an enterprise geodatabase.

Workspace
specifications
[specifications,...]

The visual specifications whose fields you want to remove from the selected feature layers and feature classes.

String

代码实例

DropVisualSpecifications example (Python window)

The following Python window script demonstrates how to use the DropVisualSpecifications tool.

import arcpy

# set gp environment
arcpy.env.workspace="c:/data"

# input parameter variables
roadL = "Austin.gdb/TopographicMap/RoadL"
productLibrary = "ProductLibrary.gdb"
visualspec="'TopoMap 1:24,000 :: TopoMap 1:24,000 Specification'"

# drop Visual Specifications on RoadL
arcpy.DropVisualSpecifications_production(roadL, productLibrary, visualspec)

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 需要 Production Mapping
ArcGIS for Desktop Advanced: 需要 Production Mapping
4/27/2014