Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To freeze panes in the spreadsheet document using Aspose.Cells Java for Python, simply invoke the FreezePanes module.
Python Code
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 successful."Download Hello World (Aspose.Cells) from any of the social coding sites listed below:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.