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

XtraReport.ExportToXlsx(Stream, XlsxExportOptions) Method

Exports a report to the specified stream in XLSX format. This method exports data in WYSIWYG mode.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.2.dll

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

Declaration

public void ExportToXlsx(
    Stream stream,
    XlsxExportOptions options = null
)

Parameters

Name Type Description
stream Stream

A Stream for output data.

Optional Parameters

Name Type Default Description
options XlsxExportOptions null

A XlsxExportOptions object that specifies the XLSX export options. You can omit this parameter to use the current report export options.

Remarks

Note

Once the document export has started, it runs to completion and you cannot interrupt or cancel it.

This method exports a report to a file in XLSX format with the specified XLSX export options.

If you do not specify export options, the method uses the current report export options. To access the report export options, use the XtraReport.ExportOptions.Xlsx notation.

Use the ExportToXlsxAsync(Stream, XlsxExportOptions, CancellationToken) method instead of ExportToXlsx to export a report asynchronously in a separate task.

See Also