Python'de Kaydırma Çubuklarını Görüntüleyin veya Gizle
Contents
[
Hide
]
Aspose.Cells - Kaydırma Çubuklarını Görüntüle veya Gizle
Satır/Sütun Başlıklarını Gizleme
kullanarak satır/sütun başlıklarını gizlemek içinAspose.Cells Java for Python , AramaDisplayHideRowColumnHeaders modül.
Python Kod
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."
Satır/Sütun Başlıklarını Görünür Hale Getirme
Worksheet sınıfının setRowColumnHeadersVisible(true) yöntemini kullanarak satır ve sütun başlıklarını görünür yapın.
Python Kod
# Displaying the headers of rows and columns
worksheet.setRowColumnHeadersVisible(true)
Çalışan Kodu İndir
İndirmekHello World (Aspose.Cells) aşağıda belirtilen sosyal kodlama sitelerinin herhangi birinden: