corelibraries-devexpress-dot-xtraprinting-dot-docxexportoptions.md
Gets or sets a value indicating how a document is exported to DOCX.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
[DefaultValue(DocxExportMode.SingleFilePageByPage)]
public DocxExportMode ExportMode { get; set; }
<DefaultValue(DocxExportMode.SingleFilePageByPage)>
Public Property ExportMode As DocxExportMode
| Type | Default | Description |
|---|---|---|
| DocxExportMode | SingleFilePageByPage |
An DocxExportMode enumeration value that specifies the DOCX export mode.
|
Available values:
| Name | Description |
|---|---|
| SingleFile |
A document is exported to a single file. In this mode, page headers and footers are added to the resulting DOCX file only once, at the beginning and end of the document.
| | SingleFilePageByPage |
A document is exported to a single file, page-by-page.
|
You can access this nested property as listed below:
| Object Type | Path to ExportMode |
|---|---|
| ExportOptions |
.Docx .ExportMode
|
The values listed in the DocxExportMode enumeration specify the way in which a document is exported to DOCX.
For more information, see Export to DOCX.
See Also