Mostra o Nascondi Celle di Griglia in Python
Contents
[
Hide
]
Aspose.Cells - Come Mostrare o Nascondere le Celle di Griglia
Come Nascondere le Celle di Griglia
Per nascondere il foglio di lavoro usando Aspose.Cells Java per Ruby, chiamare il modulo displayhidegridlines.
Codice Python
workbook = self.Workbook(self.dataDir + "Book1.xls")
#Accessing the first worksheet in the Excel file
worksheets = workbook.getWorksheets()
worksheet = worksheets.get(0)
#Hiding the grid lines of the first worksheet of the Excel file
worksheet.setGridlinesVisible(False)
#Saving the modified Excel file in default (that is Excel 2000) format
workbook.save(self.dataDir + "output.xls")
\# Print message
print "Grid lines are now hidden on sheet 1, please check the output document."
Come Mostrare le Celle di Griglia
Per rendere visibili le linee della griglia, utilizzare il metodo setGridlinesVisible(true)
della classe Worksheet
.
Codice Python
# Displaying the gridlines of the worksheet
worksheet.setGridlinesVisible(True)
Scarica il codice in esecuzione
Scarica Mostra Nascondi Celle di Griglia (Aspose.Cells) da uno qualsiasi dei siti di coding social qui sotto menzionati: