Selection.Fields property (Word)
Returns a read-only Fields collection that represents all the fields in the selection.
Syntax
expression. Fields
expression Required. A variable that represents a Selection object.
Example
This example adds a DATE field at the insertion point.
With Selection
.Collapse Direction:=wdCollapseStart
.Fields.Add Range:=Selection.Range, Type:=wdFieldDate
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.