[]
Gets or sets whether to include automatically merged cells when saving a file.
The default value is false.
public bool IncludeAutoMergedCells { get; set; }
Public Property IncludeAutoMergedCells As Boolean
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeAutoMergedCells = true;
bool includeAutoMergedCells = options.IncludeAutoMergedCells;
workbook.Save("path/to/output.sjs", options);