LinkFormat.SourceName property (Word)

Returns the name of the source file for the specified linked OLE object, picture, or field. Read-only String.

Syntax

expression.SourceName

expression An expression that returns a 'LinkFormat' object.

Remarks

This property doesn't return the path for the source file.

Example

This example returns the path and name of the source file for any shapes on the active document that are linked OLE objects.

For Each s In ActiveDocument.Shapes 
 If s.Type = msoLinkedOLEObject Then 
 Msgbox s.LinkFormat.SourcePath & "\" _ 
 & s.LinkFormat.SourceName 
 End If 
Next s

See also

LinkFormat Object

Support and feedback

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.