إخفاء أو إظهار ورقة عمل في Python

Aspose.Cells - إخفاء أو إظهار ورقة عمل

إخفاء ورقة عمل

لإخفاء ورقة العمل باستخدام Aspose.Cells Java for Ruby، اُستدعِي وحدة hideunhideworksheet.

كود 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 first worksheet of the Excel file

worksheet.setVisible(True)

#Saving the modified Excel file in default (that is Excel 2003) format

workbook.save(self.dataDir + "output.xls")

\# Print message

print "Worksheet 1 is now hidden, please check the output document."

عرض ورقة عمل

يمكن للمطورين جعل ورقة العمل مرئية عن طريق تعيين طريقة setVisible(true) من فئة Worksheet.

كود Python

 # Displaying the worksheet of the Excel file

worksheet.setVisible(true)

تحميل رمز التشغيل

قم بتنزيل إخفاء أو إظهار ورقة عمل (Aspose.Cells) من أي من مواقع الترميز الاجتماعي المذكورة أدناه: