[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SjsSaveOptions.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
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeAutoMergedCells = true;

bool includeAutoMergedCells = options.IncludeAutoMergedCells;
workbook.Save("path/to/output.sjs", options);