Options.DefaultFilePath property (Word)
Returns or sets default folders for items such as documents, templates, and graphics. Read/write String.
expression. DefaultFilePath
( _Path_
)
expression Required. A variable that represents an Options object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Path | Required | WdDefaultFilePath | The default folder to set. |
Use an empty string ("") to remove the setting from the Windows registry. The new setting takes effect immediately.
This example sets the default folder for Word documents.
Options.DefaultFilePath(wdDocumentsPath) = "C:\Documents"
This example returns the current default path for user templates (corresponds to the default path setting on the File Locations tab in the Options dialog box).
Dim strPath As String
strPath = Options.DefaultFilePath(wdUserTemplatesPath)
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.