HtmlExportListLabels Enum
Wordize.Saving.HtmlExportListLabels enum. Specifies how list labels are exported to HTML MHTML and EPUB.
HtmlExportListLabels enumeration
Specifies how list labels are exported to HTML, MHTML and EPUB.
public enum HtmlExportListLabels
Values
Name | Value | Description |
---|---|---|
Auto | 0 | Outputs list labels in auto mode. Uses HTML native elements when possible. |
AsInlineText | 1 | Outputs all list labels as inline text. |
ByHtmlTags | 2 | Outputs all list labels as HTML native elements. |
Examples
Shows how to configure exporting list labels to HTML.
HtmlSaveOptions htmlSaveOptions = new HtmlSaveOptions();
htmlSaveOptions.ExportListLabels = HtmlExportListLabels.AsInlineText;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "HtmlSaveOptions.ExportListLabels.html", htmlSaveOptions)
.Execute();
See Also
- property ExportListLabels
- namespace Wordize.Saving
- assembly Wordize