使用 Aspose.Cells 显示和隐藏工作簿的选项卡
Contents
[
Hide
]
Aspose.Cells - 工作簿的显示和隐藏选项卡
Aspose.Cells 提供了一个类 Workbook,它表示一个 Microsoft Excel 文件。 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");