[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.IgnoreSheets

IgnoreSheets Property

IgnoreSheets

Gets or sets whether sheets are ignored when serializing a workbook or worksheet to JSON.

If this property is true, the JSON output excludes worksheet data. The default value is false.

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