[]
Gets or sets whether automatically merged cells are included when exporting to HTML.
The default value is false.
public bool IncludeAutoMergedCells { get; set; }
Public Property IncludeAutoMergedCells As Boolean
HtmlSaveOptions options = new HtmlSaveOptions();
options.IncludeAutoMergedCells = true;
bool includeAutoMergedCells = options.IncludeAutoMergedCells;
using MemoryStream stream = new MemoryStream();
workbook.Save(stream, options);