[]
Gets or sets whether row and column information outside the used range is ignored when exporting to JSON.
When this option is true, row styles, column styles, row heights, and column widths
outside the used range are not exported. The default value is true.
public bool IgnoreColumnRowInfoOutOfUsedRange { get; set; }
Public Property IgnoreColumnRowInfoOutOfUsedRange As Boolean
SerializationOptions options = new SerializationOptions();
options.IgnoreColumnRowInfoOutOfUsedRange = false;
bool ignoreUnusedRowsAndColumns = options.IgnoreColumnRowInfoOutOfUsedRange;