Share via


UpdateFieldsAtPrint Property

UpdateFieldsAtPrint Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

True if Microsoft Word updates fields automatically before printing a document. Read/write Boolean.

expression.UpdateFieldsAtPrint

expression   Required. An expression that returns an Options object.

Example

This example sets Word to update fields automatically before printing, and then it prints the active document.

  Options.UpdateFieldsAtPrint = True
ActiveDocument.PrintOut

This example returns the current status of the Update fields option on the Print tab in the Options dialog box (Tools menu).

  temp = Options.UpdateFieldsAtPrint