Optional
showOptional. Whether to show the hidden and very hidden sheets in XLSX file. The default value is false.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {showHiddenSheets: true});
Optional
showOptional. Whether to show the hidden rows in XLSX file. The default value is false.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {showHiddenRows: true});
Optional
showOptional. Whether to show the hidden columns in XLSX file. The default value is false.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {showHiddenColumns: true});
Optional
showOptional. Whether to show the filters in XLSX file. The default value is true.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {showFilters: false});
Optional
keepOptional. Whether to show the row groups when loading a XLSX file. The default value is true.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {keepRowGroups: false});
Optional
keepOptional. Whether to show the column groups when loading a XLSX file. The default value is true.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {keepColumnGroups: false});
Optional
password?: stringOptional. For decrypting password-protected XLSX file.
viewer.openFile('Documents/HelloWorld.xlsx', FileType.XLSX, {password: "123"});
Options to open the XLSX file.