[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.IgnoreColumnRowInfoOutOfUsedRange

IgnoreColumnRowInfoOutOfUsedRange Property

IgnoreColumnRowInfoOutOfUsedRange

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.

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