Share via


Field.UpdateSource Method (Word)

Saves the changes made to the results of an INCLUDETEXT field back to the source document.

Syntax

expression .UpdateSource

expression Required. A variable that represents a Field object.

Remarks

The source document must be formatted as a Word document.

Example

This example updates the INCLUDETEXT fields in the active document.

Dim fldLoop As Field 
 
For Each fldLoop In ActiveDocument.Fields 
 If fldLoop.Type = wdFieldIncludeText Then _ 
 fldLoop.UpdateSource 
Next fldLoop

See Also

Concepts

Field Object Members

Field Object