[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.IgnoreStyle

IgnoreStyle Property

IgnoreStyle

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.

Declaration
public bool IgnoreStyle { get; set; }
Public Property IgnoreStyle As Boolean
Examples
SerializationOptions options = new SerializationOptions();
options.IgnoreStyle = true;
bool ignoreStyle = options.IgnoreStyle;