Adding multiple slide masters to powerpoint presentation.

M

mohito

Hello,

I am using PowerPoint 2003. I have different slides in different
presentations. I want to combine several slides into one new
presentation.

using PowerPointCore = Microsoft.Office.Interop.PowerPoint;

....

PowerPointCore .Application pptApplication = new
PowerPointCore.Application();
PowerPointCore.Presentation pptPresentation =
pptApplication.Presentations.Add(MsoTriState.msoFalse);

Then I am having the file paths to all the other presentations I want
to take slides from and I am using

pptPresentation.Slides.InsertFromFile( ... )

Everything works fine, but having in mind that slides are from
different presentations, they have different styling and different
master slides. How can I copy the master files or I don't know what to
do and to apply them to the inserted slides, in order to look the way
they are looking into their original presentation, I am copying them
from?

Thanks in advance to all.
 

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