HtmlSaveOptions.ExportListLabels

HtmlSaveOptions ExportListLabels property. Controls how list labels are output to HTML MHTML or EPUB. Default value is Auto.

HtmlSaveOptions.ExportListLabels property

Controls how list labels are output to HTML, MHTML or EPUB. Default value is Auto.

public HtmlExportListLabels ExportListLabels { get; set; }

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