HtmlFixedExportFontFormat Enum

Wordize.Saving.HtmlFixedExportFontFormat enum. Indicates the format that is used to export fonts while rendering to HTML fixed format.

HtmlFixedExportFontFormat enumeration

Indicates the format that is used to export fonts while rendering to HTML fixed format.

public enum HtmlFixedExportFontFormat

Values

NameValueDescription
Woff0WOFF (Web Open Font Format).
Ttf1TTF (TrueType Font format).

Examples

Shows how to specify font export format in HtmlFixed format.

HtmlFixedSaveOptions htmlFixedSaveOptions = new HtmlFixedSaveOptions();
htmlFixedSaveOptions.FontFormat = HtmlFixedExportFontFormat.Ttf;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "HtmlFixedSaveOptions.FontFormat.html", htmlFixedSaveOptions)
    .Execute();

See Also