Object Model Reference : Classes : B : Bitmap : Methods : Bitmap.UpdateLink |
Sub UpdateLink()
Member of Bitmap
The UpdateLink method updates an externally linked bitmap by re-importing the linked file.
The following VBA example updates the active bitmap if it is externally linked.
Sub Embed() |
With ActiveShape.Bitmap |
If .ExternallyLinked = True Then |
.UpdateLink |
End If |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.