Object Model Reference : Classes : B : Bitmap : Methods : Bitmap.ResolveLink |
Sub ResolveLink()
Member of Bitmap
The ResolveLink method embeds an externally linked bitmap.
The following VBA example embeds the active bitmap if it is not already embedded.
Sub Embed() |
With ActiveShape.Bitmap |
If .ExternallyLinked = True Then |
.ResolveLink |
End If |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.