xlsx4jでマージされたセルを検出
Contents
[
Hide
]
Aspose.Cells - マージされたセルを検出
Microsoft Excelでは、複数のセルを1つにマージすることができます。これは、複雑なテーブルを作成したり、複数の列にまたがる見出しを作成するためによく使用されます。 Aspose.Cellsを使用すると、ワークシート内のマージされたセル領域を識別できます。また、それらをアンマージすることもできます。
Java
//Get the merged cells list to put it into the arraylist object
ArrayList<CellArea> al = worksheet.getCells().getMergedCells();
//Define cellarea
CellArea ca;
//Define some variables
int frow, fcol, erow, ecol;
// Print Message
System.out.println("Merged Areas: \n"+ al.toString());
//Loop through the arraylist and get each cellarea to unmerge it
for(int i = al.size()-1 ; i > -1; i--)
{
ca = new CellArea();
ca = (CellArea)al.get(i);
frow = ca.StartRow;
fcol = ca.StartColumn;
erow = ca.EndRow;
ecol = ca.EndColumn;
System.out.println((i+1) + ". [" + fcol +"," + frow +"] " + "[" + ecol +"," + erow +"]");
worksheet.getCells().unMerge(frow, fcol, erow, ecol);
}
ランニングコードのダウンロード
サンプルコードをダウンロード
ワークシートでのマージされたセルの検出についての詳細は、マージされたセルの検出をご覧ください。