ArcObjects Library Reference (Display)  

IFieldOverride Interface

Provides access to the properties of a field override.

Product Availability

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

Members

Description
Read-only property FieldName Name of the field that provides override values.
Read-only property GraphicAttributeID ID of the overriden graphic attribute.
Read-only property GraphicAttributes Graphic attributes list that contains the overriden graphic attribute.

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