DevExpress.Docs.Presentation 25.2.3

Prefix Reserved
dotnet add package DevExpress.Docs.Presentation --version 25.2.3
                    
NuGet\Install-Package DevExpress.Docs.Presentation -Version 25.2.3
                    
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="DevExpress.Docs.Presentation" Version="25.2.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevExpress.Docs.Presentation" Version="25.2.3" />
                    
Directory.Packages.props
<PackageReference Include="DevExpress.Docs.Presentation" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DevExpress.Docs.Presentation --version 25.2.3
                    
#r "nuget: DevExpress.Docs.Presentation, 25.2.3"
                    
#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.
#:package DevExpress.Docs.Presentation@25.2.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DevExpress.Docs.Presentation&version=25.2.3
                    
Install as a Cake Addin
#tool nuget:?package=DevExpress.Docs.Presentation&version=25.2.3
                    
Install as a Cake Tool

Documentation | Demo | Getting Started Example | Blog & Feedback | Support

DevExpress PowerPoint Presentation API for .NET

DevExpress Presentation API is a cross-platform .NET library that allows you to manage Microsoft PowerPoint presentation files. Install this package and use available APIs to create, edit, read, merge, split, print, export, and digitally sign presentations. All this functionality is available in your .NET applications without Microsoft Office dependencies.

Cross-Platform PowerPoint File Processing

DevExpress PowerPoint Presentation API is compatible with the following operating systems and platforms:

  • Windows, Linux, macOS
  • .NET 8/9, .NET Framework 4.6.2+
  • Azure, AWS, Docker

File Format Support

  • Import/Export: PPTX, PPTM, POTX, POTM
  • Export Only: PDF

Full Support for PowerPoint Elements

  • Slides, Slide Layouts, Slide Masters
  • Notes Slides, Notes Master
  • Shapes, Images, Connectors, Placeholders
  • Text, Paragraphs, Lists
  • Headers, Footers
  • Tables
  • Built-in & Custom Document Properties
  • Presentation View Settings
  • Themes

Key Features

  • Generate new PowerPoint presentations from scratch using comprehensive APIs
  • Merge, copy, and split presentations with full slide control
  • Export presentations to PDF with high-quality rendering
  • Cross-platform printing support
  • 170+ shape types including figures, connectors, tables, and image formats
  • Full control over text, paragraph, shape, and slide formatting
  • Add, remove, duplicate, and customize slides and layouts
  • Extract and modify slide text and speaker notes
  • Read and update presentation metadata

Get Started

Install the DevExpress.Docs.Presentation NuGet package

dotnet add package DevExpress.Docs.Presentation

Create a New Presentation from Scratch

using DevExpress.Docs.Presentation;
//...
// Create a presentation with a single empty slide
Presentation presentation = new Presentation();
// Configure Slide Master
SlideMaster slideMaster = presentation.SlideMasters[0];
slideMaster.Background = new CustomSlideBackground(new SolidFill(Color.FromArgb(194, 228, 249)));
        
// Add a new slide with content
presentation.Slides.Clear();
Slide slide1 = new Slide(slideMaster.Layouts.Get(SlideLayoutType.Title));
foreach (Shape shape in slide1.Shapes) {
    if (shape.Placeholder.Type is PlaceholderType.CenteredTitle) {
        TextArea textArea = new TextArea();
        TextParagraph paragraph = new TextParagraph();
        paragraph.Runs.Add(new TextRun { Text = "Daily Testing Status Report" });
        textArea.Paragraphs.Add(paragraph);
        shape.TextArea = textArea;
    }
    if (shape.Placeholder.Type is PlaceholderType.Subtitle) {
        TextArea textArea = new TextArea();
        TextParagraph paragraph = new TextParagraph();
        paragraph.Runs.Add(new TextRun { Text = $"{DateTime.Now: dddd, MMMM d, yyyy}" });
        textArea.Paragraphs.Add(paragraph);
        shape.TextArea = textArea;
    }
}
presentation.Slides.Add(slide1);
    
// Save Presentation to PPTX
FileStream outputStream = new FileStream(@"D:\mypresentation.pptx", FileMode.Create);
presentation.SaveDocument(outputStream);
Convert a Presentation to PDF
using DevExpress.Docs.Presentation;
//...
// Load a Presentation
Presentation presentation = new Presentation(File.ReadAllBytes("mypresentation.pptx"));
// Export to PDF
presentation.ExportToPdf(new FileStream(@"D:\exported-document.pdf", FileMode.Create));

Documentation | Demo | Getting Started Example | Blog & Feedback | Support

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net462 is compatible.  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.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on DevExpress.Docs.Presentation:

Package Downloads
DevExpress.Docs.Presentation.es

Target Platform/Framework: Desktop, Web, Mobile DevExpress Product Libraries Used: .NET Office File API (https://www.devexpress.com/officefileapi) Available in the following DevExpress Subscription(s): Universal, Office File API

DevExpress.Docs.Presentation.ja

Target Platform/Framework: Desktop, Web, Mobile DevExpress Product Libraries Used: .NET Office File API (https://www.devexpress.com/officefileapi) Available in the following DevExpress Subscription(s): Universal, Office File API

DevExpress.Docs.Presentation.de

Target Platform/Framework: Desktop, Web, Mobile DevExpress Product Libraries Used: .NET Office File API (https://www.devexpress.com/officefileapi) Available in the following DevExpress Subscription(s): Universal, Office File API

DevExpress.AIIntegration.Docs

Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, Office File API

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
25.2.3 752 12/18/2025
25.1.8 87 1/16/2026
25.1.7 702 11/25/2025
25.1.6 350 10/23/2025
25.1.5 2,416 9/11/2025
25.1.4 589 8/12/2025
25.1.3 488 12/10/2025