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