Skip to main content

PrintingSystemBase.ExportToXlsx(Stream, XlsxExportOptions) Method

Exports a report to the specified stream in XLSX format using the defined XLSX-specific options.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

public virtual void ExportToXlsx(
    Stream stream,
    XlsxExportOptions options
)

Parameters

Name Type Description
stream Stream

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

options XlsxExportOptions

An 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 the specified XLSX export options (e.g. XlExportOptionsBase.ShowGridLines, XlExportOptionsBase.TextExportMode and so on).

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

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

For more information, see Export to XLSX.

See Also