Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

XtraReport.ExportToDocx(String, DocxExportOptions) Method

Exports a report to the specified file DOCX format.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public void ExportToDocx(
    string path,
    DocxExportOptions options = null
)

#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.

See Also