[]
Gets or sets whether headings are exported when saving a file to HTML.
This property controls whether row and column headings are included in the exported HTML output. The default value is false.
public bool ExportHeadings { get; set; }
Public Property ExportHeadings As Boolean
HtmlSaveOptions options = new HtmlSaveOptions();
options.ExportHeadings = true;
bool exportHeadings = options.ExportHeadings;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);