Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

RichEditDocumentServer.ExportToPdf(String) Method

Exports the document content to the specified file path in PDF format.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v21.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

public virtual void ExportToPdf(
    string fileName
)

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 Export to PDF document.

Note

If an application is hosted on Microsoft Azure, set the AzureCompatibility.Enable property to true on application startup.

server.LoadDocument("Documents//MovieRentals.docx", DocumentFormat.OpenXml);

//Export the document to the file:
server.ExportToPdf("Document_PDF.pdf");

System.Diagnostics.Process.Start("Document_PDF.pdf");
See Also