LinkFormat Property
Applies To
Shape object, ShapeRange collection object.
Description
Returns a LinkFormat object that contains the properties that are unique to linked OLE objects. Read-only.
Example
This example updates and then breaks the links between any OLE objects on slide one in the active presentation and their source files.
For Each sh In ActivePresentation.Slides(1).Shapes
If sh.Type = msoLinkedOLEObject Then
With sh.LinkFormat
.Update
.BreakLink
End With
End If
Next