Pythonでウィンドウを固定する

Aspose.Cells - ペインを固定する

Aspose.Cells Java for Pythonを使用してスプレッドシートドキュメントのウィンドウを固定するには、FreezePanesモジュールを呼び出すだけです。

Pythonコード

 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."

ランニングコードのダウンロード

以下のソーシャルコーディングサイトから**Hello World (Aspose.Cells)**をダウンロードしてください: