[]
Gets or sets whether comments are exported when saving to HTML.
This option applies to HTML export and determines whether cell comments are included in the generated HTML output. The default value is false.
public bool IsExportComments { get; set; }
Public Property IsExportComments As Boolean
HtmlSaveOptions options = new HtmlSaveOptions();
options.IsExportComments = true;
bool exportComments = options.IsExportComments;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);