Compartilhar via


Field.UpdateSource Method

Word Developer Reference

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.

Visual Basic for Applications
  Dim fldLoop As Field

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

See Also