com.esri.arcgis.display
Interface IFieldOverride

All Superinterfaces:
Serializable
All Known Implementing Classes:
IFieldOverrideProxy

public interface IFieldOverride
extends Serializable

Provides access to the properties of a field override.

Remarks


pFieldOverrides.Reset  'Call Reset first

Set pFieldOverride = pFieldOverrides.Next       'Retrive

'the first  FieldOverride

Do Until pFieldOverride Is Nothing

    Debug.Print "FieldName = " & pFieldOverride.FieldName & " ; AttributeID = " & pFieldOverride.GraphicAttributeID

    Set pFieldOverride = pFieldOverrides.Next

Loop

Product Availability

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


Method Summary
 String getFieldName()
          Name of the field that provides override values.
 int getGraphicAttributeID()
          ID of the overriden graphic attribute.
 IGraphicAttributes getGraphicAttributes()
          Graphic attributes list that contains the overriden graphic attribute.
 

Method Detail

getFieldName

String getFieldName()
                    throws IOException,
                           AutomationException
Name of the field that provides override values.

Product Availability

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

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

getGraphicAttributeID

int getGraphicAttributeID()
                          throws IOException,
                                 AutomationException
ID of the overriden graphic attribute.

Product Availability

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

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

getGraphicAttributes

IGraphicAttributes getGraphicAttributes()
                                        throws IOException,
                                               AutomationException
Graphic attributes list that contains the overriden graphic attribute.

Product Availability

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

Returns:
A reference to a com.esri.arcgis.display.IGraphicAttributes
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.