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.
Scales the width of the specified inline shape relative to its original size. Read/write Single.
Syntax
expression.ScaleWidth
expression Required. A variable that represents an 'InlineShape' object.
Example
This example sets the height and width of the first inline shape in the active document to 150 percent of the shape's original height and width.
With ActiveDocument.InlineShapes(1)
.ScaleHeight = 150
.ScaleWidth = 150
End With
See also
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.