Compartilhar via


Field.Result Property

Word Developer Reference

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.

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

See Also