Options.UpdateLinksAtOpen Property

Word Developer Reference

True if Microsoft Word automatically updates all embedded OLE links in a document when it is opened. Read/write Boolean.

Syntax

expression.UpdateLinksAtOpen

expression   An expression that returns an Options object.

Example

This example sets Word to update embedded OLE links when it opens files.

Visual Basic for Applications
  Options.UpdateLinksAtOpen = True

This example returns the current status of the Update automatic links at Open option on the General tab in the Options dialog box.

Visual Basic for Applications
  temp = Options.UpdateLinksAtOpen

See Also