Share via


PictureFormat.Crop Property (Word)

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

Version Information

Version Added: Word 2010

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

Concepts

PictureFormat Object

PictureFormat Object Members