LinkFormat Property [Excel 2003 VBA Language Reference]

Returns a LinkFormat object that contains linked OLE object properties. Read-only.

Example

This example updates all linked OLE objects on worksheet one.

For Each s In Worksheets(1).Shapes
    If s.Type = msoLinkedOLEObject Then s.LinkFormat.Update
Next

Applies to | Shape Object