Skip to main content
A newer version of this page is available. .

PdfStreamingExporter.Export(Stream, PdfExportOptions) Method

Exports a report to the specified stream in PDF using the specified PDF-specific options.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Core

Declaration

public void Export(
    Stream stream,
    PdfExportOptions options
)

Parameters

Name Type Description
stream Stream

A Stream object to which the created PDF file should be sent.

options PdfExportOptions

A PdfExportOptions object which specifies the PDF export options to be applied when a report is exported.

Remarks

Use this method to export a report in PDF using the specified PDF export options (like PdfExportOptions.ImageQuality, PdfExportOptions.NeverEmbeddedFonts and others.) In this case, the current report export options, which are specified by the ExportOptions.Pdf property accessed using the report’s XtraReport.ExportOptions property, are ignored.

If you want to use the current report export options, call the overloaded PdfStreamingExporter.Export method without the options parameter.

See Also