Delete a slide from a presentation in PPT
Hi,
How do I delete a slide from a PPT presentation?
This is how I add slide:
tempSlide = objPresentation.Slides;
newSlide = tempSlide.Add(tempSlide.count+1,2)
slideShape = newSlide.Shapes
aTable = slideShape.AddTable()
I tried this but it is not work
objPresentation.delete.Slide;
Please advise
Thanks
|