SourceFullName Property
Applies To
LinkFormat object.
Description
Returns or sets the name and path of the source file for the specified linked OLE object, picture, or field. Read/write String.
See Also
SourceName property, SourcePath property.
Example
This example sets MyExcel.xls as the source file for shape one on the active document and specifies that the OLE object be updated automatically.
With ActiveDocument.Shapes(1)
If .Type = msoLinkedOLEObject Then
With .LinkFormat
.SourceFullName = "c:\my documents\myExcel.xls"
.AutoUpdate = True
End With
End If
End With