Skip to content

Instantly share code, notes, and snippets.

@dotspencer
Created October 8, 2015 14:47
Show Gist options
  • Save dotspencer/04d9d1d62facd3fcfe8f to your computer and use it in GitHub Desktop.
Save dotspencer/04d9d1d62facd3fcfe8f to your computer and use it in GitHub Desktop.
Macro to delete all figures from a Word document
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