Field.Result (Word)
Returns a Range object that represents a field's result.
You can access a field result without changing the view from field codes. Use the Text property to return text from a Range object.
If Selection.Fields.Count >= 1 Then
Set myRange = Selection.Fields(1).Result
myRange.Bold = True
End If