This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Display > ESRI.ArcGIS.Display > Interfaces > IF > IFieldOverride Interface (ArcObjects .NET 10.4 SDK) |
Provides access to the properties of a field override.
Description | ||
---|---|---|
FieldName | Name of the field that provides override values. | |
GraphicAttributeID | ID of the overriden graphic attribute. | |
GraphicAttributes | Graphic attributes list that contains the overriden graphic attribute. |
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