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

RichEditDocumentServer.ExportToPdf(Stream) Method

Exports the document to the specified stream in PDF format.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

public virtual void ExportToPdf(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object, to which the document is exported.

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. Refer to the How to resolve issues with unexpected output content of Printing, Reporting, RichEditDocumentServer, PDF libraries on Azure Web Site article for more information.


server.LoadDocument("Documents\\MovieRentals.docx", DocumentFormat.OpenXml);
//Specify export options:
//Export the document to the stream:
using (FileStream pdfFileStream = new FileStream("Document_PDF.pdf", FileMode.Create))
{
    server.ExportToPdf(pdfFileStream);
}
System.Diagnostics.Process.Start("Document_PDF.pdf");

The following code snippets (auto-collected from DevExpress Examples) contain references to the ExportToPdf(Stream) 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.

See Also