Visa eller dölj flikar i Python

Aspose.Cells - Visa Dölj flikar

Gömma flikar

För att dölja flikar med Aspose.Cells Java för Ruby, anropa modulen displayhidetabs.

Python-kod

 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."

Göra flikar synliga

Gör flikar synliga med klassen Workbook metod setSheetTabBarHidden(false).

Python-kod

 # Displaying the tabs of the Excel file

workbook.getSettings().setSowTabs(true)

Ladda ned körbar kod

Ladda ner Hello World (Aspose.Cells) från någon av nedan nämnda sociala kodningssidor: