Field.Result property (Word)

Returns a Range object that represents a field's result. Read/write.

Syntax

expression. Result

expression Required. A variable that represents a 'Field' object.

Remarks

You can access a field result without changing the view from field codes. Use the Text property to return text from a Range object.

Example

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

See also

Field Object

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.