[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.IgnoreRangeOutOfRowColumnCount

IgnoreRangeOutOfRowColumnCount Property

IgnoreRangeOutOfRowColumnCount

Gets or sets whether to ignore data outside the RowCount and ColumnCount when exporting to JSON.

If this property is true, data outside the row and column count limits is ignored during JSON export. The default value is false.

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