Skip to main content

PrintingSystemBase.ExportToMht(Stream, MhtExportOptions) Method

Exports a document to the specified stream in MHT format using the defined MHT-specific options.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

public virtual void ExportToMht(
    Stream stream,
    MhtExportOptions options
)

Parameters

Name Type Description
stream Stream

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

options MhtExportOptions

An MhtExportOptions object that specifies the MHT export options to be applied when a document is exported.

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.

The printing system export options passed to this method are used instead of the current PrintingSystemBase.ExportOptions.Mht options. If you wish to use the current export options of a printing system, call the PrintingSystemBase.ExportToMht(Stream) method without the options parameter.

Note

Do not set the ExportMode property to DifferentFiles when you use this method to export to a stream.

Refer to the following help topic for more information: Export to MHT.

See Also