Quote:
Originally Posted by flamerozzy
create this macro, one click and all images on the current doc will have locked aspect ratio on:
Sub LockAspectRatioForAllImages()
Dim pic As InlineShape
For Each pic In ActiveDocument.InlineShapes
If pic.Type = wdInlineShapePicture Then
pic.LockAspectRatio = msoTrue
End If
Next pic
End Sub
|
Thanks so much for posting this method! It really helps me a lot!!! Have a nice day