Skip to main content
All docs
V19.2

XtraReport.ExportToDocx(String) Method

Exports a report to the specified file path in DOCX format.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public void ExportToDocx(
    string path
)

Parameters

Name Type Description
path String

A String value that specifies the file name (including the full path) for the created DOCX file.

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 to a DOCX file using its current DOCX-specific export options. These options are provided by the DocxExportOptions object returned by the ExportOptions.Docx property of a report’s XtraReport.ExportOptions.

If you want to ignore current export options of a report and use your specific settings, use the overloaded XtraReport.ExportToDocx method with the options parameter.

Note that this method overwrites any files present at the specified path that have the same file name without any warnings.

For more information on using the ExportToDocx method and limitations on export to DOCX, refer to the Export to DOCX document.

See Also