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

XtraReport.ExportToXls(Stream, XlsExportOptions) Method

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

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.1.dll

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

Declaration

public void ExportToXls(
    Stream stream,
    XlsExportOptions options = null
)

Parameters

Name Type Description
stream Stream

A Stream for output data.

Optional Parameters

Name Type Default Description
options XlsExportOptions null

The XLS 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 XLS file with the specified XLS export options.

If the export options are not specified, the current report export options are used. To access the report export options, use the the report’s XtraReport.ExportOptions property. The property contains the ExportOptions object whose ExportOptions.Xls property provides access to the XlsExportOptions object that contains the XLS export options.

Use the ExportToXlsAsync(Stream, XlsExportOptions, CancellationToken) method instead of ExportToXls to export a report asynchronously in a separate task.

See Also