عرض أو إخفاء أشرطة التمرير في Python
Contents
[
Hide
]
Aspose.Cells - عرض أو إخفاء أشرطة التمرير
إخفاء رؤوس الصفوف / الأعمدة
لإخفاء رؤوس الصفوف / الأعمدة باستخدامAspose.Cells Java for Python ، مكالمةDisplayHideRowColumnHeaders وحدة.
Python كود
workbook = self.Workbook(self.dataDir + "Book1.xls")
# Hiding the vertical scroll bar of the Excel file
workbook.getSettings().setVScrollBarVisible(False)
# Hiding the horizontal scroll bar of the Excel file
workbook.getSettings().setHScrollBarVisible(False)
# Saving the modified Excel file in default (that is Excel 2003) format
workbook.save(self.dataDir + "output.xls")
\# Print message
print "Scroll bars are now hidden, please check the output document."
جعل رؤوس الصفوف / الأعمدة مرئية
اجعل رؤوس الصفوف والأعمدة مرئية باستخدام أسلوب setRowColumnHeadersVisible (true) لفئة ورقة العمل.
Python كود
# Displaying the headers of rows and columns
worksheet.setRowColumnHeadersVisible(true)
قم بتنزيل كود التشغيل
تحميلHello World (Aspose.Cells) من أي من مواقع الترميز الاجتماعي المذكورة أدناه: