Skip to content

Latest commit

 

History

History
60 lines (33 loc) · 1.14 KB

PowerPoint.LinkFormat.SourceFullName.md

File metadata and controls

60 lines (33 loc) · 1.14 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
LinkFormat.SourceFullName property (PowerPoint)
vbapp10.chm563003
vbapp10.chm563003
PowerPoint.LinkFormat.SourceFullName
6a7fb694-609a-77c5-eabc-d95693a87299
06/08/2017
medium

LinkFormat.SourceFullName property (PowerPoint)

Returns or sets the name and path of the source file for the linked OLE object. Read/write.

Syntax

expression. SourceFullName

expression A variable that represents a LinkFormat object.

Return value

String

Example

This example sets the source file for shape one on slide one in the active presentation to Wordtest.doc and specifies that the object's image be updated automatically.

With ActivePresentation.Slides(1).Shapes(1)

    If .Type = msoLinkedOLEObject Then

        With .LinkFormat

            .SourceFullName = "c:\my documents\wordtest.doc"

            .AutoUpdate = ppUpdateOptionAutomatic

        End With

    End If

End With

See also

LinkFormat Object

[!includeSupport and feedback]