Skip to main content
Tab

ASPxGridBase.ExportToDocx(Stream, DocxExportOptions) Method

Exports the control’s data to the specified stream in DOCX format.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public void ExportToDocx(
    Stream stream,
    DocxExportOptions exportOptions
)

Parameters

Name Type Description
stream Stream

A Stream object, to which the created document is exported.

exportOptions DocxExportOptions

A DocxExportOptions object which specifies the export options to be applied when the control is exported.

Remarks

This method indirectly calls the PrintingSystemBase.ExportToDocx method of the XtraPrinting Library. If this library is not available, the method does nothing. For details on the ExportToDocx method, see the PrintingSystemBase.ExportToDocx topic.

Note

DevExpress controls require the DevExpress.RichEdit.v23.2.Export.dll library to export their content to DOCX or RTF format.

See Also