[]
Gets or sets whether empty cells outside the used data range are included when saving to an SJS file.
The default value is true.
public bool IncludeEmptyRegionCells { get; set; }
Public Property IncludeEmptyRegionCells As Boolean
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeEmptyRegionCells = false;
bool includeEmptyRegionCells = options.IncludeEmptyRegionCells;
workbook.Save("path/to/output.sjs", options);