PPT 2007 - Remove Slide Master Graphic

G

George Butler

I have been asked to develop code in Powerpoint 2007 that will remove the
picture from the slide master or otherwise set the background color to white
so it can be printed without worry that the background will hamper the
readability of the items on the slide. Does anyone know what code is needed
to do this?

Thanks!
G
 
J

John Wilson

Hi George

If there is only one master and all layouts follow it then this should work:

With ActivePresentation.SlideMaster.Background.Fill
..Solid
..ForeColor.RGB = vbWhite
..Visible = msoTrue
End With

If there are several masters you would need to loop through them and if all
the layouts don't follow the master you would also need to loop through the
custom layouts
--
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top