Programmatically extracting information from power point

P

Pankaj Dhoolia

Folks,

I am interested in programmatically extracting information out of a
power-point (preferrably using C#). I want to do something like the following:

// Get a handle to PowerPoint application
PowerPoint.Application ppApp = new PowerPoint.Application();
// Get the presentation
PowerPoint._Presentation pres = ppApp.Presentations.open(...);
// Get the slide
PowerPoint._Slide objSlide = pres.Slides.get(..., name, ...);
// Get the diagram shapes
PowerPoint.Shape[] what_ever_shapes = ObjSlide.Shapes.get(..., type, ...);
// Get the shape properties

I'd appreciate if anyone could point me to relevant documentation or code
samples in above theme.

cheers.

PS: It'll be great if you could CC me on (e-mail address removed) as well.
 

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