[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XlsxSaveOptions.IncludeAutoMergedCells

IncludeAutoMergedCells Property

IncludeAutoMergedCells

Gets or sets whether to include automatically merged cells when saving a file.

The default value is false.

Declaration
public bool IncludeAutoMergedCells { get; set; }
Public Property IncludeAutoMergedCells As Boolean
Examples
XlsxSaveOptions options = new XlsxSaveOptions();
options.IncludeAutoMergedCells = true;
bool includeAutoMergedCells = options.IncludeAutoMergedCells;
workbook.Save("path/to/output.xlsx", options);