LinkFormat object (Publisher)
Represents the linking characteristics for an OLE object or picture.
Remarks
Not all types of shapes and fields can be linked to a source. Use the Type property of the Shape object to determine whether a particular shape can be linked.
Use the Update method to update links. To return or set the full path for a particular link's source file, use the SourceFullName property.
Use the Shape.LinkFormat property for a shape or field to return a LinkFormat object.
Example
The following example updates the links to all linked OLE objects on the first page of the active publication.
Sub FindOLEObjects()
Dim shpShape As Shape
For Each shpShape In ActiveDocument.Pages(1).Shapes
If shpShape.Type = pbLinkedOLEObject Then
shpShape.LinkFormat.Update
End If
Next shpShape
End Sub
Methods
Properties
See also
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.