API Documentation > CorelDRAW > 2025-v26 > Bitmap > IVGBitmap
Bitmap.OPILinked property
Returns True if the bitmap is linked to an OPI file
Syntax:
Property Get OPILinked() As Boolean
Remarks:
The OPILinked property returns True if a bitmap in the TIF format has an Open Prepress Interface (OPI) link to another image.
Examples:
The following VBA example displays the number of bitmaps with OPI links.
Sub Test()
Dim s As Shape, n As Long
n = 0
For Each s In ActivePage.Shapes
  If s.Type = cdrBitmapShape Then

 If s.Bitmap.OPILinked Then n = n + 1

 End If
  Next s
  MsgBox "There are " & n & " OPI images."

End Sub