[]
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.
public bool IgnoreRangeOutOfRowColumnCount { get; set; }
Public Property IgnoreRangeOutOfRowColumnCount As Boolean
SerializationOptions options = new SerializationOptions();
options.IgnoreRangeOutOfRowColumnCount = true;
bool ignoreRangeOutOfBounds = options.IgnoreRangeOutOfRowColumnCount;