[]
type SjsOpenOptions = object;
Options to open the SJS file.
optional keepColumnGroups?: boolean;
Optional. 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});
optional keepRowGroups?: boolean;
Optional. 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 showFilters?: boolean;
Optional. Whether to show the filters in SJS file. The default value is true.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showFilters: false});
optional showHiddenColumns?: boolean;
Optional. Whether to show the hidden columns in SJS file. The default value is false.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenColumns: true});
optional showHiddenRows?: boolean;
Optional. Whether to show the hidden rows in SJS file. The default value is false.
viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenRows: true});
optional showHiddenSheets?: boolean;
Optional. 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});