Posts Remove All Pictures From Document In Word
Post
Cancel

Remove All Pictures From Document In Word

1 way )

Go to Developer tab, Visual Basic, paste

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Public Sub PicturesDeleteAll()

Dim objPic As Shape

    For Each objPic In ActiveDocument.Shapes
            objPic.Delete
    Next objPic

Dim objPic2 As InlineShape
    For Each objPic2 In ActiveDocument.InlineShapes
            objPic2.Delete
    Next objPic2
End Sub

on my tests, multiple run needed

then remove the macro.

ref https://superuser.com/a/675136

2 way )

In the Find and Replace window, click the More» button to bring up more Search Options, and then click Special > Graphic, and finally click the Replace All button. src

origin - https://www.pipiscrew.com/?p=19162 remove-all-pictures-from-document-in-word

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags