Type alias SSJsonOpenOptions

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

Options to open the SSJSON file.

Type declaration

  • Optional showHiddenSheets?: boolean

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

    Example

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

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

    Example

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

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

    Example

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

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

    Example

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

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

    Example

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

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

    Example

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