Aspose.Slides.Examples.CSharp.Presentations.Conversion.CreateNewPresentation.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_Conversion();

            // Instantiate a Presentation object that represents a presentation file
            using (Presentation presentation = new Presentation())
            {
                // Get the first slide
                ISlide slide = presentation.Slides[0];

                // Add an autoshape of type line
                slide.Shapes.AddAutoShape(ShapeType.Line, 50, 150, 300, 0);
                presentation.Save(dataDir + "NewPresentation_out.pptx", SaveFormat.Pptx);
            }
        } 
    }
CreateNewPresentation