RichEditDocumentServer.ExportToPdf(String) Method
Exports the document content to the specified file path in PDF format.
Namespace: DevExpress.XtraRichEdit
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
fileName | String | A String which specifies the file name (including the full path) for the created PDF file. |
Remarks
PDF Export features and limitations are detailed in the following document: Export to PDF.
Use the PdfExportOptions class instance to specify export settings. Pass this object as the method parameter.
Note
If an application is hosted on Microsoft Azure, set the AzureCompatibility.Enable property to true on application startup.
using (var wordProcessor = new RichEditDocumentServer()) {
wordProcessor.LoadDocument("Documents//MovieRentals.docx", DocumentFormat.OpenXml);
// Export the document to the file:
wordProcessor.ExportToPdf("Document_PDF.pdf");
}
System.Diagnostics.Process.Start("Document_PDF.pdf");
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the ExportToPdf(String) method.
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.