This document is archived and information here might be outdated. Recommended version. |
Provides access to the properties of a field override.
Name | 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. |
CoClasses and Classes | Description |
---|
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