ProtectedViewWindow.SourcePath Property (Word)
Returns the path of the source file for the specified protected view window. Read-only String.
Version Information
Version Added: Word 2010
Syntax
expression .SourcePath
expression An expression that returns a ProtectedViewWindow object.
Remarks
The path does not include a trailing character (for example, "C:\MSOffice"). Use the PathSeparator property to add the character that separates folders and drive letters. Use the SourceName property to return the file name without the path.
Example
The following code example returns the path and name of the document associated with the specified protected view window.
MsgBox ActiveProtectedViewWindow.SourcePath & Application.PathSeparator _
& ActiveProtectedViewWindow.SourceName