Optional showOptional. Whether to show the hidden and very hidden sheets in SJS file. The default value is false.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenSheets: true});
Optional showOptional. Whether to show the hidden rows in SJS file. The default value is false.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenRows: true});
Optional showOptional. Whether to show the hidden columns in SJS file. The default value is false.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenColumns: true});
Optional showOptional. Whether to show the filters in SJS file. The default value is true.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showFilters: false});
Optional keepOptional. Whether to show the row groups when loading a SJS file. The default value is true.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {keepRowGroups: false});
Optional keepOptional. Whether to show the column groups when loading a SJS file. The default value is true.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {keepColumnGroups: false});
Options to open the SJS file.