API Documentation > CorelDRAW > 2025-v26 > Bitmap > IVGBitmap
Bitmap.Cropped property
Returns True if the bitmap can be cropped
Syntax:
Property Get Cropped() As Boolean
Remarks:
The Cropped property returns True if the bitmap can be cropped.
Examples:
The following VBA example displays the number of bitmaps that can be cropped on the active page.
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.Cropped Then n = n + 1

 End If
  Next s
  MsgBox "There are " & n & " bitmaps which can be cropped."

End Sub