Package com.aspose.cells

Examples of com.aspose.cells.Cells.merge()


   
    //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.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.