Skip to main content

PrintingSystemBase.ExportToDocx(String) Method

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

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public void ExportToDocx(
    string filePath
)

Parameters

Name Type Description
filePath 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 document 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 printing system’s PrintingSystemBase.ExportOptions.

If you want to ignore current export options of a printing system and use your specific settings, use the overloaded PrintingSystemBase.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, see Export to DOCX.

Note

The DevExpress.RichEdit.v23.2.Export.dll library is required to export reports to DOCX or RTF format.

See Also