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

NameValueDescription
Auto0Outputs list labels in auto mode. Uses HTML native elements when possible.
AsInlineText1Outputs all list labels as inline text.
ByHtmlTags2Outputs 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