API Documentation > CorelDRAW > 2025-v26 > Bitmap > IVGBitmap
Bitmap.UpdateLink method
Updates an externally linked bitmap from its source
Syntax:
Sub UpdateLink()
Remarks:
The UpdateLink method updates an externally linked bitmap by re-importing the linked file.
Examples:
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