Options.UpdateLinksAtPrint Property

Word Developer Reference

True if Microsoft Word updates embedded links to other files before printing a document. Read/write Boolean.

Syntax

expression.UpdateLinksAtPrint

expression   An expression that returns an Options object.

Example

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

Visual Basic for Applications
  Options.UpdateLinksAtPrint = True
ActiveDocument.PrintOut

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

Visual Basic for Applications
  temp = Options.UpdateLinksAtPrint

See Also