SourceFullName Property

SourceFullName Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Returns or sets the path and name of the source file for the specified linked OLE object, picture, or field. Read/write String.

expression.SourceFullName

expression   Required. An expression that returns a LinkFormat object.

Remarks

Using this property is equivalent to using in sequence the SourcePath, PathSeparator, and SourceName properties.

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