UpdateLinksAtPrint Property

Microsoft Word Visual Basic

expression.UpdateLinksAtPrint

expression    Required. 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.

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).

temp = Options.UpdateLinksAtPrint