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."
行/列ヘッダーを表示する
行列ヘッダーを表示するには、WorksheetクラスのsetRowColumnHeadersVisible(true)メソッドを使用します。
Pythonコード
# Displaying the headers of rows and columns
worksheet.setRowColumnHeadersVisible(true)
ランニングコードのダウンロード
以下のソーシャルコーディングサイトから**Hello World (Aspose.Cells)**をダウンロードしてください: