Document.Reload method (Word)

Reloads a cached document by resolving the hyperlink to the document and downloading it.

Syntax

expression. Reload

expression Required. A variable that represents a Document object.

Remarks

This method reloads the document asynchronously; that is, statements following the Reload method in your procedure may execute before the document is actually reloaded. Because of this, you may get unexpected results from using this method in your macros.

Example

This example opens and reloads the hyperlink to the address "main" on a local intranet.

With ActiveDocument 
 .FollowHyperlink Address:="https://main" 
 .Reload 
End With

See also

Document Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.