Adding a presentation template to the presentations collection (C#

L

Lucy

Hi I am coding using Visual C#.

I can add a Word 2007 document as a template to the documents collection
like this:

Word.Application w_app;
Word._Document odoc;

w_app = new Microsoft.Office.Interop.Word.Application();
odoc = w_app.Documents.Add(ref file, ref missing, ref
missing, ref objFalse);

I want to do the same for PowerPoint 2007. The Presentation.Add() method
does not add a presentation template. How can I do this?

Lucy
 

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