Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RichEditDocumentServer.ExportToPdf(Stream) Method

Exports the document to the specified stream in PDF format.

Namespace: DevExpress.XtraRichEdit

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

NuGet Package: DevExpress.RichEdit.Core

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

Use the PdfExportOptions class instance to specify export settings. Pass this object as the method parameter.

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");
See Also