[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SjsSaveOptions.IncludeEmptyRegionCells

IncludeEmptyRegionCells Property

IncludeEmptyRegionCells

Gets or sets whether empty cells outside the used data range are included when saving to an SJS file.

The default value is true.

Declaration
public bool IncludeEmptyRegionCells { get; set; }
Public Property IncludeEmptyRegionCells As Boolean
Examples
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeEmptyRegionCells = false;

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