2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
Syncfusion Essential PowerPoint is a .NET PowerPoint library used to create, read, and edit PowerPoint documents. Using this library, you can start creating a PowerPoint document in ASP.NET MVC. Steps to create a PowerPoint file programmatically:
C#: using Syncfusion.Presentation; VB: Imports Syncfusion.Presentation
C#: //Creates a PowerPoint instance IPresentation pptxDoc = Presentation.Create(); //Adds a slide to the PowerPoint presentation ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank); //Add a textbox to the slide IShape shape = slide.AddTextBox(10, 10, 500, 100); //Add a text to the textbox. shape.TextBody.AddParagraph("Hello World!!!"); //Save the PowerPoint Presentation pptxDoc.Save("Sample.pptx", FormatType.Pptx, HttpContext.ApplicationInstance.Response); //Close the PowerPoint presentation pptxDoc.Close(); VB: 'Creates a PowerPoint instance Dim pptxDoc As IPresentation = Presentation.Create() 'Adds a slide to the PowerPoint presentation Dim slide As ISlide = pptxDoc.Slides.Add(SlideLayoutType.Blank) 'Add a textbox to the slide. Dim shape As IShape = slide.AddTextBox(10, 10, 500, 100) 'Add a text to the textbox. shape.TextBody.AddParagraph("Hello World!!!") 'Save the PowerPoint Presentation pptxDoc.Save("Sample.pptx", FormatType.Pptx, HttpContext.ApplicationInstance.Response) 'Close the PowerPoint presentation pptxDoc.Close() A complete working example of how to create a PowerPoint file in ASP.NET MVC can be downloaded from Create PowerPoint file.zip By executing the program, you will get the PowerPoint file as follows. Take a moment to peruse the documentation, where you will find other options like create and edit PowerPoint tables, create and edit PowerPoint charts, convert PowerPoint slides to images, and convert PowerPoint file to PDF with code examples. Refer here to explore the rich set of Syncfusion Essential PowerPoint features. An online sample link to generate PowerPoint file. See Also: Create a PowerPoint file in Windows Forms Create a PowerPoint file in WPF Create a PowerPoint file in Xamarin Create a PowerPoint file in UWP Create a PowerPoint file in ASP.Net Core Create a PowerPoint file in Azure Function Note: Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion license key in your application to use the components without trail message.
|
2X faster development
The ultimate ASP.NET MVC UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.