Display Hide Tabs in Jython
Contents
[
Hide
]
Aspose.Cells - Display Hide Tabs
To append documents using Aspose.Cells Java for Jython. Here you can see example code.
Jython Code
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()
Download Running Code
Download Append Documents (Aspose.Cells) from any of the below mentioned social coding sites: