API Documentation > CorelDRAW > 2025-v26 > Bitmap > IVGBitmap
Bitmap.Crop method
Crops the bitmap to its clipping path
Syntax:
Sub Crop()
Remarks:
The Crop method crops the bitmap to its clipping path.
Examples:
The following VBA example crops all bitmaps which can be cropped.
Sub Test()
Dim s As Shape
For Each s In ActivePage.Shapes
  If s.Type = cdrBitmapShape Then

 If s.Bitmap.Cropped Then s.Bitmap.Crop

 End If
  Next s

End Sub