VBA: How to copy Bodyplaceholder from Master to current slide view

  • Thread starter Thread starter Jan
  • Start date Start date
J

Jan

Hello everybody,

I need help of experienced VBA programmer.

I need macro which work out following task:

-> Copy textbox of "ppPlaceholderBody" from Master to current slide
view.

I need virtually new plain textbox, with master formating (especially
with functioning bullets), at once click.

Can this powerfull community help me?!

Many thanks,

Jan
 
Hello everybody,

I need help of experienced VBA programmer.

I need macro which work out following task:

-> Copy textbox of "ppPlaceholderBody" from Master to current slide
view.

I need virtually new plain textbox, with master formating (especially
with functioning bullets), at once click.

Here's a start, though it might not do exactly what you're after:


Sub Test()

Dim oSl As Slide
Set oSl = ActivePresentation.Slides(2)

oSl.Master.Shapes.Placeholders(ppPlaceholderBody).Copy
oSl.Shapes.Paste

End Sub
 
Back
Top