إخفاء أو إظهار ورقة عمل في Python
Contents
[
Hide
]
Aspose.Cells - إخفاء أو إظهار ورقة عمل
إخفاء ورقة العمل
لإخفاء ورقة العمل باستخدام Aspose.Cells Java لروبي ، اتصلورقة عمل وحدة.
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 ( حقيقي *)*طريقةورقة عملصف دراسي.
Python كود
# Displaying the worksheet of the Excel file
worksheet.setVisible(true)
قم بتنزيل كود التشغيل
تحميلإخفاء أو إظهار ورقة عمل (Aspose.Cells) من أي من مواقع الترميز الاجتماعي المذكورة أدناه: