在 Python 中显示或隐藏选项卡

Aspose.Cells - 显示隐藏标签

隐藏标签

隐藏选项卡使用Aspose.Cells Java 红宝石, 称呼显示隐藏选项卡模块。

Python 代码

 workbook = self.Workbook(self.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(self.dataDir + "output.xls")

\# Print message

print "Tabs are now hidden, please check the output file."

使选项卡可见

使用 Workbook 类的 setSheetTabBarHidden(false) 方法使选项卡可见。

Python 代码

 # Displaying the tabs of the Excel file

workbook.getSettings().setSowTabs(true)

下载运行代码

下载**Hello World (Aspose.Cells)**来自以下任何社交编码网站: