PPT 2007 - Remove Slide Master Graphic

  • Thread starter Thread starter George Butler
  • Start date Start date
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
 
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
 
Back
Top