Previous Document Next Document

Object Model Reference : Classes : B : Bitmap : Methods : Bitmap.UpdateLink


Bitmap.UpdateLink

Sub UpdateLink()

Description

Member of Bitmap

The UpdateLink method updates an externally linked bitmap by re-importing the linked file.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.