Combinar Cells
Contents
[
Hide
]
Aspose.Cells - Combinar Cells
La clase Cells tiene algunos métodos útiles para la tarea. Por ejemplo, el método de combinación combina las celdas en una sola celda dentro de un rango específico de celdas.
Java
//Create a Workbook.
Workbook wbk = new Workbook();
//Create a Worksheet and get the first sheet.
Worksheet worksheet = wbk.getWorksheets().get(0);
//Create a Cells object to fetch all the cells.
Cells cells = worksheet.getCells();
//Merge some Cells (C6:E7) into a single C6 Cell.
cells.merge(5,2,2,3);
//Input data into C6 Cell.
worksheet.getCells().get(5,2).setValue("This is a test of merging");
//Save the Workbook.
wbk.save(dataDir + "merge_Aspose.xls");
Apache POI SS - HSSF XSSF - Fusión Cells
Sheet.addMergedRegion se puede usar para fusionar Cells.
Java
Workbook wb = new HSSFWorkbook();
Sheet sheet = wb.createSheet("new sheet");
Row row = sheet.createRow((short) 1);
Cell cell = row.createCell((short) 1);
cell.setCellValue("This is a test of merging");
sheet.addMergedRegion(new CellRangeAddress(
1, //first row (0-based)
1, //last row (0-based)
1, //first column (0-based)
2 //last column (0-based)
));
Descargar código de ejecución
Descargar código de muestra
Para más detalles, visiteFusión y desfusión (división) Cells.