LinkFormat.Update Method (PowerPoint)
Updates the specified linked OLE object.
Syntax
expression .Update
expression A variable that represents an LinkFormat object.
Remarks
To update all the links in a presentation at once, use the UpdateLinks method.
Example
This example updates all linked OLE objects in the active presentation.
For Each sld In ActivePresentation.Slides
For Each sh In sld.Shapes
If sh.Type = msoLinkedOLEObject Then
sh.LinkFormat.Update
End If
Next
Next