[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.IsExportComments

IsExportComments Property

IsExportComments

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.

Declaration
public bool IsExportComments { get; set; }
Public Property IsExportComments As Boolean
Examples
HtmlSaveOptions options = new HtmlSaveOptions();
options.IsExportComments = true;
bool exportComments = options.IsExportComments;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);