com.esri.arcgis.carto
Interface IDimensionStyle

All Superinterfaces:
Serializable
All Known Implementing Classes:
DimensionStyle

public interface IDimensionStyle
extends Serializable

Provides access to members that control the properties of a dimension style.

Description

The IDimensionStyle interface is provides properties for identifying DimensionStyles.

Remarks

The ID property is read only and assigned to a DimensionStyle when it is added to a DimensionStyles collection. The Name property provides a label for the style and is set before adding a DimensionStyle to the DimensionStyles collection. The Name property must be unique within a DimensionStyles collection.

Product Availability

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


Method Summary
 int getID()
          ID of the style.
 String getName()
          Name of the style.
 void setName(String name)
          Name of the style.
 

Method Detail

getID

int getID()
          throws IOException,
                 AutomationException
ID of the style.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The iD
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setName

void setName(String name)
             throws IOException,
                    AutomationException
Name of the style.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
name - The name (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getName

String getName()
               throws IOException,
                      AutomationException
Name of the style.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The name
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.