Previous Document Next Document

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


Bitmap.ResolveLink

Sub ResolveLink()

Description

Member of Bitmap

The ResolveLink method embeds an externally linked bitmap.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.