HtmlSaveOptions.ExportDocumentProperties

HtmlSaveOptions ExportDocumentProperties property. Specifies whether to export builtin and custom document properties to HTML MHTML or EPUB. Default value is false.

HtmlSaveOptions.ExportDocumentProperties property

Specifies whether to export built-in and custom document properties to HTML, MHTML or EPUB. Default value is false.

public bool ExportDocumentProperties { get; set; }

Examples

Shows how to enable exporting document properties to HTML.

HtmlSaveOptions htmlSaveOptions = new HtmlSaveOptions();
htmlSaveOptions.ExportDocumentProperties = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "HtmlSaveOptions.ExportDocumentProperties.html", htmlSaveOptions)
    .Execute();

See Also