Aspose.Slides.Examples.CSharp.SmartArts.CreateSmartArtShape.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_SmartArts();

            // Create directory if it is not already present.
            bool IsExists = System.IO.Directory.Exists(dataDir);
            if (!IsExists)
                System.IO.Directory.CreateDirectory(dataDir);
            // Instantiate the presentation
            using (Presentation pres = new Presentation())
            {

                // Access the presentation slide
                ISlide slide = pres.Slides[0];

                // Add Smart Art Shape
                ISmartArt smart = slide.Shapes.AddSmartArt(0, 0, 400, 400, SmartArtLayoutType.BasicBlockList);

                // Saving presentation
                pres.Save(dataDir + "SimpleSmartArt_out.pptx", Aspose.Slides.Export.SaveFormat.Pptx);
            }
        }
    }
CreateSmartArtShape