It is currently Wed Nov 27, 2024 5:35 am
MainPresentationPart presentation = ppt.getMainPresentationPart();
Part slidePart = ppt.getParts().get(new PartName("/ppt/slides/slide" + slideNum + ".xml"));
// remove slide from slide list[/color]
SldIdLst sldIdLst = presentation.getJaxbElement().getSldIdLst();
sldIdLst.getSldId().remove(slideNum);
// remove relationship from presentation[/color]
presentation.getRelationshipsPart().removeRelationship(slidePart.getPartName());
// remove part from package[/color]
ppt.getPackage().getParts().remove(slidePart.getPartName());
ppt.getParts().remove(slidePart.getPartName());
Total posts 10111 • Total topics 2842 • Total members 2074