com.esri.arcgis.display
Interface IGraphicAttributeEnumType

All Superinterfaces:
Serializable
All Known Implementing Classes:
GraphicAttributeEnumType

public interface IGraphicAttributeEnumType
extends Serializable

Provides access to methods accessing graphic attribute enumeration values.

Product Availability

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


Method Summary
 void addValue(int value, String text)
          Adds a new value to the graphic attribute enumeration.
 int nextValue()
          Hands back the next value in the enumeration.
 void reset()
          Resets the enumeration of values.
 

Method Detail

reset

void reset()
           throws IOException,
                  AutomationException
Resets the enumeration of values.

Product Availability

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

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

nextValue

int nextValue()
              throws IOException,
                     AutomationException
Hands back the next value in the enumeration.

Product Availability

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

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

addValue

void addValue(int value,
              String text)
              throws IOException,
                     AutomationException
Adds a new value to the graphic attribute enumeration.

Product Availability

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

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