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