XtraReport.ExportToDocx(String, DocxExportOptions) Method
Exports a report to the specified file DOCX format.
Namespace: DevExpress.XtraReports.UI
Assembly: DevExpress.XtraReports.v25.1.dll
NuGet Package: DevExpress.Reporting.Core
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| path | String | The path to the exported DOCX file. |
Optional Parameters
| Name | Type | Default | Description |
|---|---|---|---|
| options | DocxExportOptions | null | The DOCX export options. You can omit this parameter to use the current report export options. |
Remarks
Note
Once the document export has started, it runs to completion and you cannot interrupt or cancel it.
This method exports a report to a file in DOCX format with the specified DOCX export options.
If you do not specify export options, the method uses the current report export options. To access the report export options, use the XtraReport.ExportOptions.Docx notation.
Important
This method overwrites files with the same name without confirmation.
Use the ExportToDocxAsync(String, DocxExportOptions, CancellationToken) method instead of ExportToDocx to export a report asynchronously in a separate task.