Syncfusion.Presentation.AspNet.Mvc5 20.2.0.43

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Presentation.AspNet.Mvc5 --version 20.2.0.43
NuGet\Install-Package Syncfusion.Presentation.AspNet.Mvc5 -Version 20.2.0.43
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.Presentation.AspNet.Mvc5" Version="20.2.0.43" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.Presentation.AspNet.Mvc5 --version 20.2.0.43
#r "nuget: Syncfusion.Presentation.AspNet.Mvc5, 20.2.0.43"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Syncfusion.Presentation.AspNet.Mvc5 as a Cake Addin
#addin nuget:?package=Syncfusion.Presentation.AspNet.Mvc5&version=20.2.0.43

// Install Syncfusion.Presentation.AspNet.Mvc5 as a Cake Tool
#tool nuget:?package=Syncfusion.Presentation.AspNet.Mvc5&version=20.2.0.43

Syncfusion ASP.NET MVC PowerPoint library

The Syncfusion ASP.NET MVC (Presentation) library is a feature-rich and high-performance .NET PowerPoint library that is used to create, read, edit and convert PowerPoint presentation programmatically.

ASP.NET MVC Presentation Library

Features overview | Docs | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback

Key Features

System Requirements

Getting started

You can fetch the Syncfusion .NET PowerPoint library NuGet by simply running the command Install-Package Syncfusion.Presentation.AspNet.Mvc5 from the Package Manager Console in Visual Studio.

Try the following code example to create a hello world PowerPoint Presentation.

//Namespace to create PowerPoint
using Syncfusion.Presentation;

//Creates a new instance of PowerPoint presentation.
using (IPresentation pptxDoc = Presentation.Create())
{
	//Adds a slide to the PowerPoint Presentation.
	ISlide firstSlide = pptxDoc.Slides.Add(SlideLayoutType.Blank);
	
	//Adds a textbox in a slide by specifying its position and size.
	IShape textShape = firstSlide.AddTextBox(100, 7, 76, 200);
	
	//Adds a new paragraph with text.
	textShape.TextBody.AddParagraph("Hello World");
	
	//Creates an instance of memory stream.
	using (MemoryStream stream = new MemoryStream())
	{
	  //Saves the Presentation to stream.
	  pptxDoc.Save(stream);
	}
}

For more information to get started, refer to our Getting Started Documentation page.

License

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 27,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1700+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET Web Forms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI (Preview), Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI (Preview), Flutter, Xamarin, and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.


sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Syncfusion.Presentation.AspNet.Mvc5:

Package Downloads
Syncfusion.AspNet.Mvc5

Syncfusion UI components for ASP.NET MVC (Essential JS 1) contain the runtime MVC #MVCVersion# assemblies for building line-of-business applications. They contain more than 70 HTML helpers, including popular controls such as data grid, chart, Gantt, diagram, spreadsheet, schedule, and pivot grid to build server-side dynamic websites based on Microsoft's ASP.NET MVC Framework. Key features: • Support for all the major browsers: IE8+, Microsoft Edge, Chrome 17+, Firefox 22+, Safari 5+, and Opera 12+. • Support for globalization and localization. • Seventeen built-in themes including Material, Office 365, Bootstrap, and High contrast themes. • Built-in compliance with the WAI-ARIA specification, which ensures the components work properly in assistive technologies. • User-interactive widget mode sustainable in a browser’s local storage, which helps to maintain the state for each component. • Support for strongly-typed HTML helpers that use lambda expressions to refer to models. • Seamless cooperation with jQuery validation to perform validation on form controls like numeric, masked text box, check box, RTE, and drop-down list. • Support for RequireJS in all its components, which implements AMD specifications. So users can load the users-specified scripts and modules into a page. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/aspnetmvc/?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/general?utm_source=nuget&utm_medium=listing This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/?utm_source=nuget&utm_medium=listing). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products?utm_source=nuget&utm_medium=listing or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials?utm_source=nuget&utm_medium=listing).

Syncfusion.PresentationToPdfConverter.AspNet.Mvc5 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Presentation-to-PDF converter is a .NET library that allows you to convert the PowerPoint presentation to PDF in any ASP.NET MVC applications without any Microsoft Office dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
25.1.40 108 4/15/2024
25.1.39 142 4/8/2024
25.1.38 112 4/1/2024
25.1.37 121 3/26/2024
25.1.35 176 3/15/2024
24.2.9 207 3/4/2024
24.2.8 215 2/26/2024
24.2.7 227 2/19/2024
24.2.6 209 2/14/2024
24.2.5 228 2/12/2024
24.2.4 261 2/5/2024
24.2.3 454 1/31/2024
24.1.47 335 1/22/2024
24.1.46 338 1/16/2024
24.1.45 469 1/8/2024
24.1.44 330 1/2/2024
24.1.43 367 12/27/2023
24.1.41 542 12/18/2023
23.2.7 457 12/6/2023
23.2.6 527 11/28/2023
23.2.5 420 11/23/2023
23.2.4 492 11/20/2023
23.1.44 439 11/6/2023
23.1.43 568 10/30/2023
23.1.42 471 10/23/2023
23.1.41 421 10/16/2023
23.1.40 507 10/10/2023
23.1.39 823 10/4/2023
23.1.38 489 9/26/2023
23.1.36 569 9/15/2023
22.2.12 543 9/5/2023
22.2.11 471 8/28/2023
22.2.10 558 8/22/2023
22.2.9 559 8/14/2023
22.2.8 539 8/7/2023
22.2.7 601 8/2/2023
22.2.5 658 7/27/2023
22.1.39 648 7/18/2023
22.1.38 625 7/11/2023
22.1.37 630 7/3/2023
22.1.36 625 6/28/2023
22.1.34 801 6/21/2023
21.2.10 1,043 6/13/2023
21.2.9 646 6/6/2023
21.2.8 742 5/30/2023
21.2.6 738 5/22/2023
21.2.5 763 5/15/2023
21.2.4 702 5/9/2023
21.2.3 806 5/3/2023
21.1.41 797 4/19/2023
21.1.39 793 4/10/2023
21.1.38 805 4/3/2023
21.1.37 883 3/29/2023
21.1.35 1,429 3/23/2023
20.4.0.54 1,516 3/13/2023
20.4.0.53 885 3/7/2023
20.4.0.52 930 2/28/2023
20.4.0.51 881 2/21/2023
20.4.0.50 856 2/14/2023
20.4.0.49 1,058 2/7/2023
20.4.0.48 972 2/1/2023
20.4.0.44 3,588 1/18/2023
20.4.0.43 3,317 1/10/2023
20.4.0.42 3,290 1/4/2023
20.4.0.41 3,141 12/29/2022
20.4.0.40 3,128 12/28/2022
20.4.0.38 3,267 12/21/2022
20.3.0.61 3,107 12/12/2022
20.3.0.60 3,271 12/6/2022
20.3.0.59 3,359 11/29/2022
20.3.0.58 3,317 11/22/2022
20.3.0.57 3,390 11/15/2022
20.3.0.56 3,420 11/8/2022
20.3.0.52 3,579 10/27/2022
20.3.0.50 7,554 10/18/2022
20.3.0.49 3,711 10/11/2022
20.3.0.48 3,553 10/5/2022
20.3.0.47 3,992 9/29/2022
20.2.0.50 3,704 9/20/2022
20.2.0.49 3,694 9/13/2022
20.2.0.48 3,735 9/6/2022
20.2.0.46 3,705 8/30/2022
20.2.0.45 3,779 8/23/2022
20.2.0.44 4,773 8/16/2022
20.2.0.43 3,853 8/8/2022
20.2.0.40 3,795 7/26/2022
20.2.0.39 3,699 7/19/2022
20.2.0.38 3,816 7/12/2022
20.2.0.36 4,407 6/30/2022
20.1.0.61 3,931 6/20/2022
20.1.0.60 3,743 6/14/2022
20.1.0.59 3,872 6/6/2022
20.1.0.58 3,874 5/31/2022
20.1.0.57 3,738 5/23/2022
20.1.0.56 3,761 5/17/2022
20.1.0.55 4,724 5/12/2022
20.1.0.52 3,825 5/3/2022
20.1.0.51 5,220 4/26/2022
20.1.0.50 3,868 4/19/2022
20.1.0.48 3,847 4/12/2022
20.1.0.47 4,178 4/4/2022
19.4.0.56 6,874 3/14/2022
19.4.0.55 3,839 3/8/2022
19.4.0.54 3,720 2/28/2022
19.4.0.53 6,061 2/22/2022
19.4.0.52 3,783 2/15/2022
19.4.0.50 3,869 2/8/2022
19.4.0.48 3,940 1/31/2022
19.4.0.47 3,773 1/25/2022
19.4.0.43 3,905 1/18/2022
19.4.0.42 3,713 1/11/2022
19.4.0.41 3,281 1/4/2022
19.4.0.40 3,427 12/28/2021
19.4.0.38 3,435 12/17/2021
19.3.0.59 3,146 12/14/2021
19.3.0.57 3,918 12/7/2021
19.3.0.56 3,886 11/29/2021
19.3.0.55 3,259 11/23/2021
19.3.0.54 3,274 11/17/2021
19.3.0.53 3,322 11/12/2021
19.3.0.48 3,323 11/3/2021
19.3.0.47 3,453 10/26/2021
19.3.0.46 2,632 10/19/2021
19.3.0.45 3,472 10/12/2021
19.3.0.44 4,076 10/5/2021
19.3.0.43 5,774 9/30/2021
19.2.0.62 3,875 9/13/2021
19.2.0.60 3,565 9/7/2021
19.2.0.59 4,586 8/30/2021
19.2.0.57 3,386 8/24/2021
19.2.0.56 3,959 8/17/2021
19.2.0.55 3,459 8/11/2021
19.2.0.51 5,535 8/2/2021
19.2.0.49 3,940 7/26/2021
19.2.0.48 3,272 7/19/2021
19.2.0.47 3,649 7/13/2021
19.2.0.46 3,395 7/6/2021
19.2.0.44 3,535 6/30/2021
19.1.0.69 3,571 6/14/2021
19.1.0.67 3,491 6/7/2021
19.1.0.66 3,462 5/31/2021
19.1.0.65 4,157 5/24/2021
19.1.0.64 3,480 5/19/2021
19.1.0.63 6,126 5/13/2021
19.1.0.59 3,412 5/3/2021
19.1.0.58 4,318 4/26/2021
19.1.0.57 3,534 4/20/2021
19.1.0.56 3,398 4/13/2021
19.1.0.55 3,455 4/6/2021
19.1.0.54 3,467 3/30/2021
18.4.0.49 3,562 3/22/2021
18.4.0.48 3,428 3/16/2021
18.4.0.47 3,425 3/9/2021
18.4.0.46 3,302 3/2/2021
18.4.0.44 3,723 2/23/2021
18.4.0.43 9,933 2/15/2021
18.4.0.42 3,500 2/9/2021
18.4.0.41 3,490 2/2/2021
18.4.0.39 3,410 1/28/2021
18.4.0.35 3,419 1/19/2021
18.4.0.34 3,413 1/12/2021
18.4.0.33 3,578 1/4/2021
18.4.0.32 3,511 12/30/2020
18.4.0.31 3,501 12/22/2020
18.4.0.30 3,974 12/17/2020
18.3.0.53 3,635 12/8/2020
18.3.0.52 3,497 11/30/2020
18.3.0.51 3,595 11/23/2020
18.3.0.50 3,864 11/17/2020
18.3.0.48 3,616 11/10/2020
18.3.0.47 3,646 11/5/2020
18.3.0.44 3,530 10/27/2020
18.3.0.42 3,638 10/20/2020
18.3.0.40 4,918 10/12/2020
18.3.0.38 3,700 10/7/2020
18.3.0.35 3,913 10/1/2020
18.2.0.59 3,619 9/22/2020
18.2.0.58 7,820 9/15/2020
18.2.0.57 3,693 9/8/2020
18.2.0.56 3,739 9/1/2020
18.2.0.55 3,683 8/25/2020
18.2.0.54 3,817 8/18/2020
18.2.0.48 4,107 8/4/2020
18.2.0.47 3,784 7/28/2020
18.2.0.46 3,756 7/21/2020
18.2.0.45 3,968 7/14/2020
18.2.0.44 4,694 7/6/2020
18.1.0.59 6,105 6/23/2020
18.1.0.57 3,841 6/16/2020
18.1.0.56 4,056 6/9/2020
18.1.0.55 3,948 6/2/2020
18.1.0.54 4,192 5/27/2020
18.1.0.53 3,842 5/19/2020
18.1.0.52 3,821 5/13/2020
18.1.0.48 3,872 5/5/2020
18.1.0.46 3,824 4/28/2020
18.1.0.45 3,923 4/21/2020
18.1.0.44 4,010 4/14/2020
18.1.0.43 4,646 4/7/2020
18.1.0.42 4,459 4/1/2020
18.1.0.36-beta 3,094 3/19/2020
17.4.0.55 9,938 3/10/2020
17.4.0.53 8,189 3/3/2020
17.4.0.51 3,984 2/25/2020
17.4.0.50 3,960 2/18/2020
17.4.0.49 3,933 2/11/2020
17.4.0.47 12,688 2/5/2020
17.4.0.46 4,086 1/30/2020
17.4.0.44 3,934 1/21/2020
17.4.0.43 3,740 1/14/2020
17.4.0.41 3,881 1/7/2020
17.4.0.40 3,941 12/24/2019
17.4.0.39 4,753 12/17/2019
17.3.0.34 4,275 12/10/2019
17.3.0.33 3,706 12/4/2019
17.3.0.30 3,900 12/3/2019
17.3.0.29 4,062 11/26/2019
17.3.0.28 3,997 11/19/2019
17.3.0.27 4,320 11/12/2019
17.3.0.26 8,283 11/5/2019
17.3.0.21 3,873 10/29/2019
17.3.0.19 3,982 10/22/2019
17.3.0.17 4,535 10/15/2019
17.3.0.14 4,367 10/3/2019
17.3.0.9-beta 3,198 9/20/2019
17.2.0.51 11,827 9/10/2019
17.2.0.49 3,977 9/3/2019
17.2.0.47 3,793 8/27/2019
17.2.0.46 4,924 8/22/2019
17.2.0.41 4,004 8/13/2019
17.2.0.40 4,109 8/6/2019
17.2.0.39 4,096 7/30/2019
17.2.0.36 3,968 7/23/2019
17.2.0.35 4,005 7/17/2019
17.2.0.34 4,159 7/11/2019
17.2.0.28-beta 3,399 6/27/2019
17.1.0.53 4,985 6/25/2019
17.1.0.52 4,034 6/18/2019
17.1.0.51 6,025 6/11/2019
17.1.0.50 4,667 6/4/2019
17.1.0.49 3,993 5/28/2019
17.1.0.48 4,121 5/21/2019
17.1.0.47 4,481 5/14/2019
17.1.0.44 4,039 5/7/2019
17.1.0.43 4,074 4/30/2019
17.1.0.42 4,070 4/23/2019
17.1.0.41 4,048 4/16/2019
17.1.0.40 4,167 4/9/2019
17.1.0.38 4,367 3/29/2019
17.1.0.32-beta 3,193 3/13/2019
16.4.0.54 5,022 2/19/2019
16.4.0.53 4,230 2/14/2019
16.4.0.52 9,671 2/5/2019
16.4.0.48 5,582 1/22/2019
16.4.0.47 4,786 1/16/2019
16.4.0.46 20,650 1/8/2019
16.4.0.44 4,282 12/24/2018
16.4.0.42 6,552 12/17/2018
16.4.0.40-beta 3,400 12/10/2018
16.3.0.36 4,695 11/27/2018
16.3.0.35-beta 3,361 11/23/2018
16.3.0.29 11,193 10/30/2018
16.3.0.21 7,934 9/21/2018