セルの結合と解除
紹介
すべての行や列に常に同じ数のセルを必ずしも欲しいわけではありません。 たとえば、複数の列にまたがるタイトルを置きたい場合があります。 または、請求書を作成する場合、合計に対して少ない列を望むことがあります。 セルを1つに結合してみてください。 Microsoft Excelは、ユーザーがファイルを選択して自分の望むようにスプレッドシートの構造を結合できます。
ワークシート内でセルを結合する
Microsoft Excelでセルを結合する
以下の手順では、MS Excelを使用してワークシート内のセルを結合する方法について説明します。
- 範囲内で左上のセルにデータをコピーします。
- 結合したいセルを選択します。
- 行または列内のセルを結合してセルの内容を中央に配置するには、書式設定ツールバーの結合して中央配置アイコンをクリックします。
Aspose.Cells for Python via .NETを使ったセルの結合
Aspose.Cells.Cellsクラスには、そのようなタスクに便利なメソッドがいくつかあります。 たとえば、メソッドMerge()は指定された範囲内でセルを1つのセルに結合します。
以下の例は、ワークシート内のセル(C6:E7)を結合する方法を示しています。
from aspose.cells import BackgroundType, Workbook | |
from aspose.pydrawing import Color | |
from os import os, path | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# The path to the documents directory. | |
dataDir = RunExamples.GetDataDir(".") | |
# Create directory if it is not already present. | |
IsExists = path.isdir(dataDir) | |
if notIsExists: | |
os.makedirs(dataDir) | |
# Create a Workbook. | |
wbk = Workbook() | |
# Create a Worksheet and get the first sheet. | |
worksheet = wbk.worksheets[0] | |
# Create a Cells object ot fetch all the cells. | |
cells = worksheet.cells | |
# Merge some Cells (C6:E7) into a single C6 Cell. | |
cells.merge(5, 2, 2, 3) | |
# Input data into C6 Cell. | |
worksheet.cells.get(5, 2).put_value("This is my value") | |
# Create a Style object to fetch the Style of C6 Cell. | |
style = worksheet.cells.get(5, 2).get_style() | |
# Create a Font object | |
font = style.font | |
# Set the name. | |
font.name = "Times New Roman" | |
# Set the font size. | |
font.size = 18 | |
# Set the font color | |
font.color = Color.blue | |
# Bold the text | |
font.is_bold = True | |
# Make it italic | |
font.is_italic = True | |
# Set the backgrond color of C6 Cell to Red | |
style.foreground_color = Color.red | |
style.pattern = BackgroundType.SOLID | |
# Apply the Style to C6 Cell. | |
cells.get(5, 2).set_style(style) | |
# Save the Workbook. | |
wbk.save(dataDir + "mergingcells.out.xls") |
結合されたセルの結合解除(分割)
Microsoft Excel の使用
以下の手順では、Microsoft Excelを使用して結合されたセルを分割する方法について説明します。
- 結合されたセルを選択します。セルが結合されている場合、整列して中央揃えが書式設定ツールバーで選択されます。
- 書式設定ツールバーで結合して中央配置をクリックします。
Aspose.Cells for Python via .NETを使用して
Aspose.Cells.Cellsクラスには、セルの参照を使用して結合されたセルを元の状態に分割するメソッドUnMerge()があります。 このメソッドは、結合されたセルの範囲内のセルの参照を使用してセルを分割します。
以下の例は、結合されたセル(C6)を分割する方法を示しています。 この例では、前の例で作成されたファイルを使用し、結合されたセルを分割しています。
from aspose.cells import Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# The path to the documents directory. | |
dataDir = RunExamples.GetDataDir(".") | |
# Create a Workbook. | |
# Open the excel file. | |
wbk = Workbook(dataDir + "mergingcells.xls") | |
# Create a Worksheet and get the first sheet. | |
worksheet = wbk.worksheets[0] | |
# Create a Cells object ot fetch all the cells. | |
cells = worksheet.cells | |
# Unmerge the cells. | |
cells.un_merge(5, 2, 2, 3) | |
# Save the file. | |
wbk.save(dataDir + "unmergingcells.out.xls") |