Pythonでグリッド線を表示または非表示にする

Aspose.Cells - グリッド線の表示または非表示の方法

グリッド線を非表示にする方法

Aspose.Cells Java for Rubyを使用してワークシートを非表示にするには、displayhidegridlinesモジュールを呼び出します。

Pythonコード

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

#Accessing the first worksheet in the Excel file

worksheets = workbook.getWorksheets()

worksheet = worksheets.get(0)

#Hiding the grid lines of the first worksheet of the Excel file

worksheet.setGridlinesVisible(False)

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

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

\# Print message

print "Grid lines are now hidden on sheet 1, please check the output document."

グリッド線の表示方法

グリッド線を表示するには、WorksheetクラスのsetGridlinesVisible(true)メソッドを使用します。

Pythonコード

 # Displaying the gridlines of the worksheet

worksheet.setGridlinesVisible(True)

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

以下のいずれかのソーシャルコーディングサイトから**DisplayHideGridlines (Aspose.Cells)**をダウンロード: