Pythonでタブを表示または非表示にする

Aspose.Cells - タブを表示または非表示にする

タブを非表示にする

Aspose.Cells Java for Rubyを使用してタブを非表示にするには、displayhidetabsモジュールを呼び出します。

Pythonコード

 workbook = self.Workbook(self.dataDir + "Book1.xls")

#Hiding the tabs of the Excel file

workbook.getSettings().setShowTabs(False)

#Saving the modified Excel file in default (that is Excel 2003) format

workbook.save(self.dataDir + "output.xls")

\# Print message

print "Tabs are now hidden, please check the output file."

タブを表示する

WorkbookクラスのsetSheetTabBarHidden(false)メソッドを使用して、タブを表示する

Pythonコード

 # Displaying the tabs of the Excel file

workbook.getSettings().setSowTabs(true)

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

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