Skip to main content
A newer version of this page is available. .

HtmlExportOptions(String, String, Boolean) Constructor

Initializes a new instance of the HtmlExportOptions class with the specified settings.

Namespace: DevExpress.XtraPrinting

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

NuGet Packages: DevExpress.Printing.Core, DevExpress.WindowsDesktop.Printing.Core

Declaration

public HtmlExportOptions(
    string characterSet,
    string title,
    bool removeSecondarySymbols
)

Parameters

Name Type Description
characterSet String

A String representing the encoding name set in the HTML file (e.g. “UTF-8”). This value is assigned to the HtmlExportOptionsBase.CharacterSet property.

title String

A String containing the name shown as the title of the created HTML file. This value is assigned to the HtmlExportOptionsBase.Title property.

removeSecondarySymbols Boolean

true to remove secondary symbols; otherwise, false. This value is assigned to the HtmlExportOptionsBase.RemoveSecondarySymbols property.

See Also