Created
December 13, 2013 06:02
-
-
Save kristopherjohnson/7940367 to your computer and use it in GitHub Desktop.
Microsoft Word macro to resize all pictures in a document to 40% of original size
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub ScalePictures40() | |
Dim i As Long | |
With ActiveDocument | |
For i = 1 To .InlineShapes.Count | |
With .InlineShapes(i) | |
.ScaleHeight = 40 | |
.ScaleWidth = 40 | |
End With | |
Next i | |
End With | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks.