在xlsx4j中显示和隐藏工作簿的选项卡
Contents
[
Hide
]
Aspose.Cells - 显示和隐藏工作簿的选项卡
Aspose.Cells提供了一个代表Microsoft Excel文件的Workbook类。Workbook类提供了广泛的属性和方法来管理Excel文件。为了控制Excel文件中选项卡的可见性,开发人员可以使用Workbook类的setShowTabs方法。
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");