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

PrintingSystemBase.ExportToXlsx(Stream) Method

Exports a report to the specified stream in XLSX format.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public void ExportToXlsx(
    Stream stream
)

Parameters

Name Type Description
stream Stream

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

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.

These options are represented by the XlsxExportOptions object returned by the ExportOptions.Xlsx property of a printing system’s PrintingSystemBase.ExportOptions. This object provides the XlExportOptionsBase.ShowGridLines, XlExportOptionsBase.TextExportMode and other properties which are intended to specify parameters of the resulting XLSX file.

If you want to ignore current export options of a report, and use your specific settings when a report is exported to XLSX, you should use the overloaded PrintingSystemBase.ExportToXlsx method with the options parameter.

For more information, see Export to XLSX.

See Also