LinkFormat.Update method (PowerPoint)

Updates the specified linked OLE object.

Syntax

expression.Update

expression A variable that represents a 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

See also

LinkFormat Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.