Visa och dölj flikar för arbetsbok med hjälp av Aspose.Cells
Contents
[
Hide
]
Aspose.Cells - Visa och dölj flikar för arbetsbok
Aspose.Cells tillhandahåller en klass, Workbook, som representerar en Microsoft Excel-fil. Workbook-klassen tillhandahåller ett brett utbud av egenskaper och metoder för att hantera en Excel-fil. För att kontrollera synligheten av flikar i en Excel-fil kan utvecklare använda Workbook-klassens setShowTabs-metod.
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");