How do I add watermark(with shape slanted at 45 degrees-and grayed) to all slides of A PPT Presentation with VBA?
I created an input box to accept a string variable that would be watermarked on all slides of a PPT. I also tried creating a shape and feeding the variable inputted into it. I now have a challenge pasting this shape on the rest of the slides in the presentation but sending backward.
Option Explicit
Public thepresentn As Presentation
Public theslide As Slide
Public thetex As Shape
Sub ConfidentialProject()
Set thepresentn = ActivePresentation
Set theslide = ActivePresentation.Slides.Item(1)
Set thetex = theslide.Shapes.Item(1)
Dim WORD As String
WORD = InputBox("Please Enter the text you want to appear as Watermark",
"Enter Text Here:")
thetex.TextFrame.TextRange.Text = WORD
End Sub
I expect the watermark on the first slide to be replicated on all other slides.
I have offered you TWO solutions. The first is using the slide master and the second is using the method you requested.
This will work by modifying your slide master. Not copy and paste. if you need copy and paste then, Please specify what to copy and paste (Text, Picture, etc....)
And the copy and paste method