Python da Panelleri Dondur
Contents
[
Hide
]
Aspose.Cells - Panoları Sabitleme
Aspose.Cells Java for Python kullanarak Elektronik Tablo Belgesinde Panelleri Dondurmak için basitçe FreezePanes modülünü çağırın.
Python Kodu
workbook = self.Workbook(self.dataDir + "Book1.xls")
#Accessing the first worksheet in the Excel file
worksheets = workbook.getWorksheets()
worksheet = worksheets.get(0)
#Applying freeze panes settings
worksheet.freezePanes(3,2,3,2)
#Saving the modified Excel file in default format
workbook.save(self.dataDir + "book.out.xls")
#Print Message
print "Panes freeze successfull."
Çalışan Kodu İndir
Herhangi bir sosyal kodlama sitesinden Merhaba Dünya (Aspose.Cells)‘ı indirin