[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SjsSaveOptions.IgnoreRangeOutOfRowColumnCount

IgnoreRangeOutOfRowColumnCount Property

IgnoreRangeOutOfRowColumnCount

Gets or sets whether data outside the worksheet RowCount and ColumnCount is ignored when exporting to an .sjs file.

The default value is false. When this property is false, data outside the specified row and column count is still exported to the .sjs file.

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

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