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

XlsxExportMode Enum

Lists the available XLSX export modes.

Namespace: DevExpress.XtraPrinting

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

Declaration

[ResourceFinder(typeof(ResFinder))]
[TypeConverter(typeof(EnumTypeConverter))]
public enum XlsxExportMode

Members

Name Description
SingleFile

A document is exported to a single file. Note that in this mode, page headers and footers are added to the resulting XLSX file only once, at the beginning and at the end of the document.

SingleFilePageByPage

A document is exported to a single file, page-by-page. In this mode, each page is exported to an individual sheet of the same XLSX file.

DifferentFiles

A document is exported to multiple files, page-by-page. In this mode every document page is exported to a single XLSX file.

Related API Members

The following properties accept/return XlsxExportMode values:

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the XlsxExportMode enum.

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