在 Jython 中显示隐藏选项卡
Contents
[
Hide
]
Aspose.Cells - 显示隐藏标签
使用附加文档Aspose.Cells Java 对于 Jython.在这里您可以看到示例代码。
Jython代码
from aspose-cells import Settings
from com.aspose.cells import Workbook
class DisplayHideTabs:
def __init__(self):
dataDir = Settings.dataDir + 'WorkingWithWorksheets/DisplayHideTabs/'
workbook = 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 + "output.xls")
# Print message
print "Tabs are now hidden, please check the output file."
if __name__ == '__main__':
DisplayHideTabs()
下载运行代码
下载**附加文件 (Aspose.Cells)**来自以下任何社交编码网站: