[]
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.
public bool IgnoreSheets { get; set; }
Public Property IgnoreSheets As Boolean
SerializationOptions options = new SerializationOptions();
options.IgnoreSheets = true;
bool ignoreSheets = options.IgnoreSheets;