Result Property Example

This example displays the result of each form field in the active document.

For Each aField In ActiveDocument.FormFields
    MsgBox aField.Result
Next aField

This example applies bold formatting to the first field in the selection.

If Selection.Fields.Count >= 1 Then
    Set myRange = Selection.Fields(1).Result
    myRange.Bold = True
End If