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