View Single Post
 
Old 04-21-2023, 06:41 PM
flamerozzy flamerozzy is offline Windows 10 Office 2021
Novice
 
Join Date: Apr 2023
Posts: 1
flamerozzy is on a distinguished road
Lightbulb made a macro for this

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
Reply With Quote