Показать или скрыть сетку в Python

Aspose.Cells - Как показать или скрыть сетку

Как скрыть сетку

Чтобы скрыть лист с помощью Aspose.Cells Java для Ruby, вызовите модуль displayhidegridlines.

Код 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."

Как показать сетку

Чтобы сделать видимыми сетки, используйте метод setGridlinesVisible(true) класса Worksheet.

Код Python

 # Displaying the gridlines of the worksheet

worksheet.setGridlinesVisible(True)

Скачать работающий код

Скачать DisplayHideGridlines (Aspose.Cells) с любого из упомянутых ниже социальных сайтов для кодинга: