package com.aspose.slides.examples.SmartArt; import com.aspose.slides.ISmartArt; import com.aspose.slides.Presentation; import com.aspose.slides.SaveFormat; import com.aspose.slides.SmartArtLayoutType; import com.aspose.slides.examples.Utils; public class GetOrSetTheStateOfTheSmartArtRegardingLeftToRightOrRightToLeft { public static void main(String[] args) { // The path to the documents directory. String dataDir = Utils.getDataDir(GetOrSetTheStateOfTheSmartArtRegardingLeftToRightOrRightToLeft.class); // Instantiate Presentation class that represents the PPTX file Presentation pres = new Presentation(); // Add SmartArt BasicProcess ISmartArt smart = pres.getSlides().get_Item(0).getShapes().addSmartArt(10, 10, 400, 300, SmartArtLayoutType.BasicProcess); // Get or Set the state of SmartArt Diagram smart.setReversed(true); boolean flag = smart.isReversed(); // Saving Presentation pres.save(dataDir + "output.pptx", SaveFormat.Pptx); } }