API Documentation > CorelDRAW > 2025-v26 > Bitmap > IVGBitmap
Bitmap.CropEnvelopeModified property
Returns True if the bitmap's clipping path has been modified
Syntax:
Property Get CropEnvelopeModified() As Boolean
Remarks:
The CropEnvelopeModified property returns True if the cropping path of the bitmap has been modified.
Examples:
The following VBA example displays the number of bitmaps that have a modified cropping path.
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.CropEnvelopeModified Then n = n + 1

 End If
  Next s
  MsgBox "The crop envelope has been modified on " & n & " bitmaps."

End Sub