package com.aspose.slides.examples.SmartArt; import com.aspose.slides.IShape; import com.aspose.slides.ISlide; import com.aspose.slides.ISmartArt; import com.aspose.slides.Presentation; import com.aspose.slides.SaveFormat; import com.aspose.slides.SmartArtQuickStyleType; import com.aspose.slides.examples.Utils; public class ChangingSmartArtShapeStyle { public static void main(String[] args) { // The path to the documents directory. String dataDir = Utils.getDataDir(ChangingSmartArtShapeStyle.class); // Instantiate Presentation Class Presentation pres = new Presentation(dataDir + "SimpleSmartArt.pptx"); // Get first slide ISlide slide = pres.getSlides().get_Item(0); // Traverse through every shape inside first slide for (IShape shape : slide.getShapes()) { // Check if shape is of SmartArt type if (shape instanceof ISmartArt) { // Typecast shape to SmartArtEx ISmartArt smart = (ISmartArt) shape; // Checking SmartArt style if (smart.getQuickStyle() == SmartArtQuickStyleType.SimpleFill) { // Changing SmartArt Style smart.setQuickStyle(SmartArtQuickStyleType.Cartoon); } } } // Saving presentation pres.save(dataDir + "ChangeSmartArtStyle.pptx", SaveFormat.Pptx); } }