Visualizzare e nascondere le schede del foglio di lavoro utilizzando Aspose.Cells
Contents
[
Hide
]
Aspose.Cells - Visualizza e nascondi le schede dei documenti di lavoro
Aspose.Cells fornisce una classe, Workbook, che rappresenta un file Microsoft Excel. La classe Workbook fornisce una vasta gamma di proprietà e metodi per gestire un file Excel. Per controllare la visibilità delle schede in un file Excel, gli sviluppatori possono utilizzare il metodo setShowTabs della classe Workbook.
Java
//Instantiating a Workbook object by excel file path
Workbook workbook = new Workbook(dataDir + "book1.xls");
//Hiding the tabs of the Excel file
workbook.getSettings().setShowTabs(false);
//Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(dataDir + "AsposeHideTabs.xls");
// ===============================================================
//Displaying the tabs of the Excel file
workbook.getSettings().setShowTabs(true);
//Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(dataDir + "AsposeDisplayTabs.xls");