Hello.
1) Is there any way to directly replace one master slide with another? Or will it be implemented in future?
2) Is there any way to set a MasterSlideId for a slide, or only get? And will it be implemented in future?
......
IMasterSlide master = ppt.Masters[0];
ppt.Slides[0].Layout = master.Layouts[0];
.....
......
ActiveSlide layout = (ActiveSlide)ppt.Slides[0].Layout;
ShapeCollection shapes = layout.Shapes;
......
......
ppt.Slides[1].MasterSlideID = ppt.Slides[0].MasterSlideID;
......