Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.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 file in XLS format with the specified XLS 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.Xls notation.

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the ExportToXls(Stream, XlsExportOptions) 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.

See Also