Posted 10 June 2019, 12:05 pm EST
I have tired preventing the user from being able to resize the column and row headers using the below code but they are still able to
activeSheet.getRange(-1, 0, -1, 1, GC.Spread.Sheets.SheetArea.rowHeader).resizable(false);
activeSheet.getRange(0, -1, 1, -1, GC.Spread.Sheets.SheetArea.colHeader).resizable(false);
activeSheet.setColumnResizable(-1, false, GC.Spread.Sheets.SheetArea.colHeader);
activeSheet.setRowResizable(-1, false, GC.Spread.Sheets.SheetArea.rowHeader);
Is this code incorrect?
