[]
Gets or sets whether document properties are exported when saving to HTML.
This option controls whether the workbook's document properties are included in the generated HTML output. The default value is true.
public bool ExportDocumentProperties { get; set; }
Public Property ExportDocumentProperties As Boolean
HtmlSaveOptions options = new HtmlSaveOptions();
options.ExportDocumentProperties = false;
bool exportDocumentProperties = options.ExportDocumentProperties;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);