Powerpoint - Footer Formatting

Add-in Express™ Support Service
That's what is more important than anything else

Powerpoint - Footer Formatting
change the formatting, size, position of a powerpoint footer object 
Ralf Garbe




Posts: 20
Joined: 2014-11-22
Hello,
Through Add-In Express I can set the text of the Footer of slides.
I would need to adjust the width and position of the footer frame, and also the formatting of the text.

Would you have a solution for this?

Thanks,
Ralf
Posted 13 Jan, 2019 16:36:48 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
Hello Ralf,

In a test presentation, I modify the color of the footer in this way (VBA):


Dim slMaster As PowerPoint.Master
Set slMaster = Application.ActivePresentation.SlideMaster
slMaster.Shapes.Placeholders.Item(4).TextFrame.TextRange.Font.Color = 0


Note that 4 above is the index of the placeholder shape (in my presentation) having Shape.PlaceholderFormat.Type = PpPlaceholderType.ppPlaceholderFooter.


Andrei Smolin
Add-in Express Team Leader
Posted 14 Jan, 2019 06:33:10 Top