Posted 29 July 2021, 6:49 pm EST
Hi I have the following json and when I initialize the spread and then attempt to get the visibility of the sheet it always returns true
var spread = new GC.Spread.Sheets.Workbook(spreadView[0], {font: "11pt Verdana"});
spread.options.enableAccessibility = true;
spread.suspendPaint();
spread.fromJSON({data from file}, incrementalLoading: true);
spread.resumePaint();
spread.sheets.forEach(function(sheet) {
sheet.visible() // this returns true for all sheets
});