Hi,
Thank you for your interest in Syncfusion product.
Collapsing Table Cell
If your intention is to merge a range of table cell, it can be achieved by using HorizontalMerge or VerticalMerge of the cell format. Kindly refer the below specified code snippet.
// Table formatting with cell merging.
table.Rows[0].Cells[0].CellFormat.HorizontalMerge = CellMerge.Start;
table.Rows[0].Cells[1].CellFormat.HorizontalMerge = CellMerge.Continue;
table.Rows[0].Cells[0].CellFormat.VerticalAlignment = VerticalAlignment.Middle;
table.Rows[0].Cells[0].CellFormat.BackColor = Color.FromArgb(218, 230, 246);
Please do find the online sample from the below specified location,
http://samples.syncfusion.com/ASPNET/7.2.0.20/web/docio.web/samples/3.5/Inserting%20Content/FormattingTable/CS/formattingtable.aspxFor more information, refer our online documentation.
http://help.syncfusion.com/ug_72_new/docio/TableCell.htmlIf I have misunderstood your requirement, could you please explain me in detail, so that I can work in depth and try to send a better solution?
Regards,
Suba