API Documentation
>
CorelDRAW
>
2025-v26
>
Bitmap
>
IVGBitmap
Bitmap.ExternallyLinked property
Gets the status of a bitmap: externally linked or embedded
Syntax:
Property
Get
ExternallyLinked
(
)
As
Boolean
Remarks:
The
ExternallyLinked
property returns
True
if the bitmap is linked to an external file.
Examples:
The following VBA example displays the link status of a bitmap.
Sub Link() MsgBox ActiveShape.Bitmap.ExternallyLinked End Sub