Back to Devexpress

RichEditDocumentServer.ExportToPdf(Stream) Method

officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserver-dot-exporttopdf-x28-system-dot-io-dot-stream-x29.md

latest3.4 KB
Original Source

RichEditDocumentServer.ExportToPdf(Stream) Method

Exports the document to the specified stream in PDF format.

Namespace : DevExpress.XtraRichEdit

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

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
public virtual void ExportToPdf(
    Stream stream
)
vb
Public Overridable Sub ExportToPdf(
    stream As Stream
)

Parameters

NameTypeDescription
streamStream

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.

csharp
server.LoadDocument("Documents\\MovieRentals.docx", DocumentFormat.Docx);
//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");
vb
server.LoadDocument("Documents\MovieRentals.docx", DocumentFormat.Docx)

'Export the document to the stream:
Using pdfFileStream As New FileStream("Document_PDF.pdf", FileMode.Create)
    server.ExportToPdf(pdfFileStream)
End Using
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.

office-file-api-in-web-api-app/CS/BusinessObjects/Helpers.cs#L28

csharp
if (format == RichEditFormat.Pdf)
    server.ExportToPdf(resultStream);
else

office-file-api-ai-implementation/CS/BusinessObjects/Helpers.cs#L57

csharp
if (outputFormat == RichEditFormat.Pdf)
    server.ExportToPdf(resultStream);
else

See Also

RichEditDocumentServer Class

RichEditDocumentServer Members

DevExpress.XtraRichEdit Namespace