Documents.Open Method

Opens the specified document and adds it to the Documents collection.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
Function Open ( _
    ByRef FileName As Object, _
    ByRef ConfirmConversions As Object, _
    ByRef ReadOnly As Object, _
    ByRef AddToRecentFiles As Object, _
    ByRef PasswordDocument As Object, _
    ByRef PasswordTemplate As Object, _
    ByRef Revert As Object, _
    ByRef WritePasswordDocument As Object, _
    ByRef WritePasswordTemplate As Object, _
    ByRef Format As Object, _
    ByRef Encoding As Object, _
    ByRef Visible As Object, _
    ByRef OpenAndRepair As Object, _
    ByRef DocumentDirection As Object, _
    ByRef NoEncodingDialog As Object, _
    ByRef XMLTransform As Object _
) As Document
'Usage
Dim instance As Documents
Dim FileName As Object
Dim ConfirmConversions As Object
Dim ReadOnly As Object
Dim AddToRecentFiles As Object
Dim PasswordDocument As Object
Dim PasswordTemplate As Object
Dim Revert As Object
Dim WritePasswordDocument As Object
Dim WritePasswordTemplate As Object
Dim Format As Object
Dim Encoding As Object
Dim Visible As Object
Dim OpenAndRepair As Object
Dim DocumentDirection As Object
Dim NoEncodingDialog As Object
Dim XMLTransform As Object
Dim returnValue As Document

returnValue = instance.Open(FileName, _
    ConfirmConversions, ReadOnly, AddToRecentFiles, _
    PasswordDocument, PasswordTemplate, _
    Revert, WritePasswordDocument, WritePasswordTemplate, _
    Format, Encoding, Visible, OpenAndRepair, _
    DocumentDirection, NoEncodingDialog, _
    XMLTransform)
Document Open(
    ref Object FileName,
    ref Object ConfirmConversions,
    ref Object ReadOnly,
    ref Object AddToRecentFiles,
    ref Object PasswordDocument,
    ref Object PasswordTemplate,
    ref Object Revert,
    ref Object WritePasswordDocument,
    ref Object WritePasswordTemplate,
    ref Object Format,
    ref Object Encoding,
    ref Object Visible,
    ref Object OpenAndRepair,
    ref Object DocumentDirection,
    ref Object NoEncodingDialog,
    ref Object XMLTransform
)

Parameters

  • FileName
    Type: System.Object%
    Required Object. The name of the document (paths are accepted).
  • ConfirmConversions
    Type: System.Object%
    Optional Object. True to display the Convert File dialog box if the file isn't in Microsoft Word format.
  • ReadOnly
    Type: System.Object%
    Optional Object. True to open the document as read-only.
    Note This argument doesn't override the read-only recommended setting on a saved document. For example, if a document has been saved with read-only recommended turned on, setting the ReadOnly argument to False will not cause the file to be opened as read/write.
  • AddToRecentFiles
    Type: System.Object%
    Optional Object. True to add the file name to the list of recently used files at the bottom of the File menu.
  • PasswordDocument
    Type: System.Object%
    Optional Object. The password for opening the document.
  • PasswordTemplate
    Type: System.Object%
    Optional Object. The password for opening the template.
  • Revert
    Type: System.Object%
    Optional Object. Controls what happens if FileName is the name of an open document. True to discard any unsaved changes to the open document and reopen the file. False to activate the open document.
  • WritePasswordDocument
    Type: System.Object%
    Optional Object. The password for saving changes to the document.
  • WritePasswordTemplate
    Type: System.Object%
    Optional Object. The password for saving changes to the template.
  • Format
    Type: System.Object%
    Optional Object. The file converter to be used to open the document. Can be a WdOpenFormat constant.
    To specify an external file format, apply the OpenFormat property to a FileConverter object to determine the value to use with this argument.
  • Encoding
    Type: System.Object%
    Optional Object. The document encoding (code page or character set) to be used by Microsoft Word when you view the saved document. Can be any valid MsoEncoding constant. The default value is the system code page.
  • Visible
    Type: System.Object%
    Optional Object. True if the document is opened in a visible window. The default value is True.
  • OpenAndRepair
    Type: System.Object%
    Optional Object. True to repair the document to prevent document corruption.
  • NoEncodingDialog
    Type: System.Object%
    Optional Object. True to skip displaying the Encoding dialog box that Word displays if the text encoding cannot be recognized. The default value is False.
  • XMLTransform
    Type: System.Object%
    Optional Object. Specifies a transform to use.

Return Value

Type: Microsoft.Office.Interop.Word.Document

Remarks

Avoid using hard-coded passwords in your applications. If a password is required in a procedure, request the password from the user, store it in a variable, and then use the variable in your code.

See Also

Reference

Documents Interface

Documents Members

Microsoft.Office.Interop.Word Namespace