corelibraries-devexpress-dot-xtraprinting-dot-pdfexportoptions-b9bb05c4.md
Specifies document compatibility with the PDF/UA specification.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
[DefaultValue(PdfUACompatibility.None)]
public PdfUACompatibility PdfUACompatibility { get; set; }
<DefaultValue(PdfUACompatibility.None)>
Public Property PdfUACompatibility As PdfUACompatibility
| Type | Default | Description |
|---|---|---|
| PdfUACompatibility | None |
A PdfUACompatibility enumeration value.
|
Available values:
| Name | Description |
|---|---|
| None |
The document is not PDF/UA -compatible.
| | PdfUA1 |
The document conforms to the PDF/UA specification.
|
You can access this nested property as listed below:
| Library | Object Type | Path to PdfUACompatibility |
|---|---|---|
| Cross-Platform Class Library | ExportOptions |
.Pdf .PdfUACompatibility
| | WinForms Controls | DiagramOptionsExport |
.PdfExportOptions .PdfUACompatibility
| | WPF Controls | DiagramControl |
.PdfExportOptions .PdfUACompatibility
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the PdfUACompatibility property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
office-file-api-in-web-api-app/CS/BusinessObjects/Helpers.cs#L275
case AccessiblePdfFormat.PdfUa:
options.PdfUACompatibility = PdfUACompatibility.PdfUA1;
return options;
See Also