VOOZH about

URL: https://www.nuget.org/packages/DevExpress.Docs.Pdf

⇱ NuGet Gallery | DevExpress.Docs.Pdf 26.1.3




👁 Image
DevExpress.Docs.Pdf 26.1.3

Prefix Reserved
dotnet add package DevExpress.Docs.Pdf --version 26.1.3
 
 
NuGet\Install-Package DevExpress.Docs.Pdf -Version 26.1.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.Pdf" Version="26.1.3" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DevExpress.Docs.Pdf" Version="26.1.3" />
 
Directory.Packages.props
<PackageReference Include="DevExpress.Docs.Pdf" />
 
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.Pdf --version 26.1.3
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DevExpress.Docs.Pdf, 26.1.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.Pdf@26.1.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.Pdf&version=26.1.3
 
Install as a Cake Addin
#tool nuget:?package=DevExpress.Docs.Pdf&version=26.1.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

DevExpress PDF Document API for .NET

DevExpress PDF Document API is a new cross-platform .NET library that allows you to manage PDF files in code. Add this package to your project and use an object-oriented API model to create, load, modify, secure, and analyze PDF documents.

DevExpress PDF Document API and its strongly typed document object model (DOM) give you full access to the document structure: pages, content fragments (text, images, and shapes), annotations, form fields, metadata, attachments, and logical structure elements.

  • Generate new PDF documents from scratch using comprehensive fragment-based page content model
  • Generate and manage tagged (PDF/UA-compliant) PDF documents with full control over the structure tree
  • Find, format, and edit text
  • Merge or split files, manage pages
  • Add comments and annotations
  • Create, fill, and edit interactive forms
  • Encrypt a document with a password, specify access permissions, read current encryption settings, or remove encryption from existing files
  • Attach ZUGFeRD invoices
  • Redact sensitive content
  • Manage document properties and XMP metadata
  • Print documents on Windows, Linux, and macOS
  • And much more

Examples

Example 1: Create a PDF Document with Text and Images

  1. Install the package

    dotnet add package DevExpress.Docs.Pdf

  2. Create a new PDF from scratch, add text and images, and save the document to a file.

    using DevExpress.Docs.Pdf;
    
    using (PdfDocument pdfDocument = new PdfDocument()) {
     // Add an A4 page to the document.
     Page page = pdfDocument.Pages.Add(DXPaperKind.A4);
    
     // Add a title.
     page.AddFragment(new TextFragment
     {
     Text = "Quarterly Sales Report",
     Location = new PointF(50, 770),
     Font = new TextFont("Arial", TextFontStyle.Bold),
     FontSize = 24
     });
    
     // Add a paragraph.
     page.AddFragment(new TextFragment
     {
     Text = "This report summarizes sales data " +
     "for Q1 2026.",
     Location = new PointF(50, 730),
     Font = new TextFont("Arial"),
     FontSize = 12
     });
    
     // Add an image.
     DXImage logo = DXImage.FromFile("logo.png");
     page.AddFragment(new ImageFragment(logo)
     {
     Location = new PointF(50, 600),
     Size = new SizeF(200, 100)
     });
    
     // Save the document.
     using (FileStream outputStream =
     File.Create("SalesReport.pdf"))
     {
     pdfDocument.Save(outputStream);
     }
    }
    

Evaluation Period, Pricing Options, and Licensing Terms

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.

Related Components/Packages

DevExpress.Document.Processor - DevExpress Document Processing APIs for Word, Excel, and PDF documents. Note: a new version of PDF document API is available in the DevExpress.Docs.Pdf package.

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.Presentation - DevExpress Document Processing APIs for PowerPoint presentations.

dotnet add package DevExpress.Docs.Presentation

DevExpress.Docs.Barcode - DevExpress Barcode Generation APIs.

dotnet add package DevExpress.Docs.Barcode

Demos

Documentation

Useful Online Resources

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.1.3 0 6/18/2026