Created
October 8, 2015 14:47
-
-
Save dotspencer/04d9d1d62facd3fcfe8f to your computer and use it in GitHub Desktop.
Macro to delete all figures from a Word document
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 FiguresDeleteAll() | |
Dim fig As InlineShape | |
For Each fig In ActiveDocument.InlineShapes | |
fig.Delete | |
Next fig | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment