0% found this document useful (0 votes)
97 views1 page

1 PDF

This VBA code provides instructions for deleting a shape on slide 2 of a PowerPoint presentation. The code calls the Delete method on the first shape object on slide 2, removing that shape from the slide. Running this subroutine will delete the specified shape.

Uploaded by

Behrang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
97 views1 page

1 PDF

This VBA code provides instructions for deleting a shape on slide 2 of a PowerPoint presentation. The code calls the Delete method on the first shape object on slide 2, removing that shape from the slide. Running this subroutine will delete the specified shape.

Uploaded by

Behrang
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Deleting a Shape

Deleting a Shape

Sub del()
ActivePresentation.Slides(2).Shapes(1).Delete
End Sub

You might also like