RecentFile.Open method (Word)

Opens the specified object. Returns a Document object representing the opened document.

Syntax

expression.Open

expression Required. A variable that represents a RecentFile object.

Return value

Document

Example

This example opens each document in the RecentFiles collection.

Sub OpenRecentFiles() 
 Dim rFile As RecentFile 
 For Each rFile In RecentFiles 
 rFile.Open 
 Next rFile 
End Sub

See also

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