![]() |
VOOZH | about |
dotnet add package DevExpress.Docs.Presentation --version 26.1.3
NuGet\Install-Package DevExpress.Docs.Presentation -Version 26.1.3
<PackageReference Include="DevExpress.Docs.Presentation" Version="26.1.3" />
<PackageVersion Include="DevExpress.Docs.Presentation" Version="26.1.3" />Directory.Packages.props
<PackageReference Include="DevExpress.Docs.Presentation" />Project file
paket add DevExpress.Docs.Presentation --version 26.1.3
#r "nuget: DevExpress.Docs.Presentation, 26.1.3"
#:package DevExpress.Docs.Presentation@26.1.3
#addin nuget:?package=DevExpress.Docs.Presentation&version=26.1.3Install as a Cake Addin
#tool nuget:?package=DevExpress.Docs.Presentation&version=26.1.3Install as a Cake Tool
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.
DevExpress PowerPoint Presentation API is compatible with the following operating systems and platforms:
Install the DevExpress.Docs.Presentation NuGet package
dotnet add package DevExpress.Docs.Presentation
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);
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));
Whether using a 30-day evaluation version or a registered product, you must register your DevExpress.com license key on your machine. To obtain your license key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free. For detailed instructions, see License Key for DevExpress Products.
Once you have obtained and registered your license key, simply install this package to start a 30-day evaluation period.
To continue using DevExpress products after your trial period ends, purchase a license. This package is included in the following commercial subscriptions:
See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.
After you purchase a license, download and register your up-to-date DevExpress license key to remove licensing warnings and trial messages.
DevExpress.Document.Processor - DevExpress Document Processing APIs for Word, Excel, and PDF documents.
dotnet add package DevExpress.Document.Processor
DevExpress.AIIntegration.Docs - AI-powered Extensions for DevExpress Document Processing APIs.
dotnet add package DevExpress.AIIntegration.Docs
DevExpress.Docs.Pdf - New DevExpress Document Processing APIs for advanced PDF generation and editing scenarios.
dotnet add package DevExpress.Docs.Pdf
DevExpress.Docs.Barcode - DevExpress Barcode Generation APIs.
dotnet add package DevExpress.Docs.Barcode
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Framework | net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
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 |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.3 | 0 | 6/18/2026 |
| 25.2.8 | 121 | 6/10/2026 |
| 25.2.7 | 557 | 5/6/2026 |
| 25.2.6 | 354 | 4/7/2026 |
| 25.2.5 | 1,013 | 3/2/2026 |
| 25.2.4 | 911 | 2/3/2026 |
| 25.2.3 | 1,192 | 12/18/2025 |
| 25.1.12 | 85 | 6/10/2026 |
| 25.1.11 | 92 | 5/5/2026 |
| 25.1.10 | 112 | 4/6/2026 |
| 25.1.9 | 113 | 3/2/2026 |
| 25.1.8 | 138 | 1/16/2026 |
| 25.1.7 | 2,454 | 11/25/2025 |
| 25.1.6 | 413 | 10/23/2025 |
| 25.1.5 | 3,394 | 9/11/2025 |
| 25.1.4 | 633 | 8/12/2025 |
| 25.1.3 | 576 | 12/10/2025 |