Hi,
I'm facing an issue with creating a slide from a slideLayout. My SlideLayout has some placeholder shapes. But after creating the slide(slide1) with that slideLayout, I don't see any of of those placeholder shapes in /ppt/slides/slide1.xml.
This is how i'm creating a slide using that slideLayout.
SlideLayoutPart introSlideLayout = (SlideLayoutPart)pmlPackage.getParts().get(new PartName("/ppt/slideLayouts/slideLayout1.xml"));
SlidePart introSlide = PresentationMLPackage.createSlidePart(mpp, qbrIntroSlideLayout, new PartName("/ppt/slides/slide1.xml"));
I've even referred to the docx4j source code on how the slide is being created. By ...