How to merge cells in excel using infragistics.
Hi Bhanu,
You can use WorksheetMergedCellsRegion and add the cells you want to be Merged:
// Create a merged region that will be a header to the column headers
Infragistics.Documents.Excel.WorksheetMergedCellsRegion mergedRegion1 =
worksheet.MergedCellsRegions.Add( 0, 1, 0, 3 );
for more information you can see the following link.
Hi,Thanks for the above solution. It really helped me a lot.