Skip to main content

PrintingSystemBase.ExportToDocx(Stream) Method

Exports a document to the specified stream in DOCX format.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

public void ExportToDocx(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object to which the created DOCX file should be sent.

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 DOCX format using its current DOCX-specific export options. These options are represented 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.

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