[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.ExportHeadings

ExportHeadings Property

ExportHeadings

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.

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