[]
Gets or sets whether styles are ignored when a workbook or worksheet is deserialized from JSON.
If this property is true, style information in the JSON data is ignored during deserialization.
The default value is false.
public bool IgnoreStyle { get; set; }
Public Property IgnoreStyle As Boolean
DeserializationOptions options = new DeserializationOptions();
options.IgnoreStyle = true;
bool ignoreStyle = options.IgnoreStyle;