com.esri.arcgis.schematic
Interface esriSchematicAttributeStorageMode

All Superinterfaces:
Serializable

public interface esriSchematicAttributeStorageMode
extends Serializable

Schematic attribute storage mode.

Description

The esriSchematicAttributeFieldStorage mode allows schematic attribute values to be stored in a field in the related schematic feature class or diagram class. It makes those values available when using the Identify tool on schematic features or when clicking Open Attribute Table from any feature layer that comprises a schematic layer.

The esriSchematicAttributePropertySetStorage mode must be used when you want to store the schematic attribute values in the schematic dataset but you don't need this information to be clearly available from a field in the related schematic feature class or diagram class.

The esriSchematicAttributeNoStorage mode must be used when the schematic attribute values don't need to be stored in the schematic dataset. It is often the storage to specify for schematic attributes whose values are used as part of another attribute while these second attribute values are themselves stored.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Field Summary
static int esriSchematicAttributeFieldStorage
          Value of the attribute is stored in a field.
static int esriSchematicAttributeNoStorage
          Value of the attribute is not stored (need OnTheFly evaluation).
static int esriSchematicAttributePropertySetStorage
          Value of the attribute is stored in the property set.
 

Field Detail

esriSchematicAttributeNoStorage

static final int esriSchematicAttributeNoStorage
Value of the attribute is not stored (need OnTheFly evaluation).

See Also:
Constant Field Values

esriSchematicAttributeFieldStorage

static final int esriSchematicAttributeFieldStorage
Value of the attribute is stored in a field.

See Also:
Constant Field Values

esriSchematicAttributePropertySetStorage

static final int esriSchematicAttributePropertySetStorage
Value of the attribute is stored in the property set.

See Also:
Constant Field Values