[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.HtmlSaveOptions.IncludeAutoMergedCells

IncludeAutoMergedCells Property

IncludeAutoMergedCells

Gets or sets whether automatically merged cells are included when exporting to HTML.

The default value is false.

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