Mostrar u ocultar pestañas en Python
Contents
[
Hide
]
Aspose.Cells - Mostrar u ocultar pestañas
Ocultar pestañas
Para ocultar pestañas usando Aspose.Cells Java para Ruby, llama al módulo displayhidetabs.
Código 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."
Hacer pestañas visibles
Haz visibles las pestañas con el método setSheetTabBarHidden(false) de la clase Workbook.
Código Python
# Displaying the tabs of the Excel file
workbook.getSettings().setSowTabs(true)
Descargar Código en Ejecución
Descargar Hola Mundo (Aspose.Cells) desde cualquiera de los siguientes sitios de codificación social mencionados: