عرض أو إخفاء خطوط الشبكة في Python

Aspose.Cells - كيفية عرض أو إخفاء خطوط الشبكة

كيفية إخفاء خطوط الشبكة

لإخفاء ورقة العمل باستخدام Aspose.Cells Java for 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) من أي من مواقع الترميز الاجتماعية المذكورة أدناه: