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

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

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

لإخفاء ورقة العمل باستخدامAspose.Cells Java لروبي ، مكالمة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) لفئة ورقة العمل.

Python كود

 # Displaying the gridlines of the worksheet

worksheet.setGridlinesVisible(True)

قم بتنزيل كود التشغيل

تحميلDisplayHideGridlines (Aspose.Cells) من أي من مواقع الترميز الاجتماعي المذكورة أدناه: