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

XtraReport.ExportToXlsx(String, XlsxExportOptions) Method

Exports a report to the specified stream in XLSX format using the specified XLS-specific options.This method exports data in WYSIWYG mode. Certain controls (e.g., a GridControl) can be exported to XLS(XLSX) format in a faster data-aware export mode, optimized for subsequent analysis of data in MS Excel. To learn how to employ data-aware export, see Export to XLS and XLSX Formats.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public void ExportToXlsx(
    string path,
    XlsxExportOptions options
)

Parameters

Name Type Description
path String

A String which specifies the file name (including the full path) for the created XLSX file.

options XlsxExportOptions

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

Remarks

Once the document export has started, it will run until the resulting document is complete and cannot be interrupted or canceled in the process.

Use this method to export a report in XLSX format using its current XLSX-specific export options, e.g. XlExportOptionsBase.ShowGridLines, XlExportOptionsBase.SheetName, etc. For a list of these options, and more information on using the ExportToXlsx method, refer to Export to XLSX.

Note that in this instance, the current report export options, represented by the XlsxExportOptions object returned by the ExportOptions.Xlsx property of a report’s XtraReport.ExportOptions, are ignored.

If you want to use the current export options of a report, you should call the overloaded XtraReport.ExportToXlsx method without the options parameter.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ExportToXlsx(String, XlsxExportOptions) 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