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
Name | Value | Description |
---|---|---|
Woff | 0 | WOFF (Web Open Font Format). |
Ttf | 1 | TTF (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
- property FontFormat
- namespace Wordize.Saving
- assembly Wordize