SjsOpenOptions: {
    showHiddenSheets?: boolean;
    showHiddenRows?: boolean;
    showHiddenColumns?: boolean;
    showFilters?: boolean;
    keepRowGroups?: boolean;
    keepColumnGroups?: boolean;
}

Options to open the SJS file.

Type declaration

  • Optional showHiddenSheets?: boolean

    Optional. Whether to show the hidden and very hidden sheets in SJS file. The default value is false.

    Example

    viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenSheets: true});
    
  • Optional showHiddenRows?: boolean

    Optional. Whether to show the hidden rows in SJS file. The default value is false.

    Example

    viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenRows: true});
    
  • Optional showHiddenColumns?: boolean

    Optional. Whether to show the hidden columns in SJS file. The default value is false.

    Example

    viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showHiddenColumns: true});
    
  • Optional showFilters?: boolean

    Optional. Whether to show the filters in SJS file. The default value is true.

    Example

    viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {showFilters: false});
    
  • Optional keepRowGroups?: boolean

    Optional. Whether to show the row groups when loading a SJS file. The default value is true.

    Example

    viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {keepRowGroups: false});
    
  • Optional keepColumnGroups?: boolean

    Optional. Whether to show the column groups when loading a SJS file. The default value is true.

    Example

    viewer.openFile('Documents/HelloWorld.sjs', FileType.SJS, {keepColumnGroups: false});