PictureFormat.Crop property (Word)

Returns or sets a Crop object that represents an image cropping. Read/write.

Syntax

expression.Crop

expression An expression that returns a PictureFormat object.

Remarks

Use the Crop property to work with an image cropping.

Example

The following code example creates a cropping of the first image in the active document and sets the crop height to 100 point.

Dim myInlineShape As InlineShape 
Dim myCrop As Crop 
 
Set myInlineShape = ActiveDocument.InlineShapes(1) 
Set myCrop = myInlineShape.PictureFormat.Crop 
 
myCrop.ShapeHeight = 100

See also

PictureFormat Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.