Schematic Diagram properties (arcpy)
Récapitulatif
The Describe function returns the following properties for Schematic Diagrams. Dataset Properties are also supported.
A Schematic Diagram returns a dataType of "SchematicDiagram".
Propriétés
Propriété | Explication | Type de données |
diagramClassName (Lecture seule) |
The name of the schematic diagram class associated with the diagram. | String |
Exemple de code
Schematic Diagram properties example (stand-alone script)
The following stand-alone script displays the diagramClassName property of a schematic diagram.
import arcpy
# Create a Describe object for a schematic diagram
#
desc = arcpy.Describe("C:/data/blanding.gdb/CityPower/Feeders/Feeder 0801-Rice Creek")
# Print the diagram class name property
#
print "Diagram Class Name: " + desc.diagramClassName
4/26/2014