Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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