You are on page 1of 1

Sub resize()

Dim i As Long
With ActiveDocument
For i = 1 To .InlineShapes.Count
With .InlineShapes(i)
.ScaleHeight = 46.4
.ScaleWidth = 46.4
End With
Next i
End With
End Sub

You might also like