ProtectedViewWindow.SourceName Property (Excel)
Returns the name of the source file that is open in the specified Protected View window. Read-only
Version Information
Version Added: Excel 2010
Syntax
expression .SourceName
expression A variable that represents a ProtectedViewWindow object.
Return Value
String
Remarks
This property does not return the path for the source file. To return the path, use the SourcePath property of the ProtectedViewWindow object.
Example
The following example returns the path and name of the workbook associated with the specified Protected View window.
MsgBox ActiveProtectedViewWindow.SourcePath & "\" _
& ActiveProtectedViewWindow.SourceName