5
hi friend,
try following code:
oTable.Rows[1].Cells[1].Merge(oTable.Rows[1].Cells[2]);
This line will merge two cells. i have already used it.
Please mark as answer if it helps you.
0
Hi friend,
Your code for merging cells in c# is very usefull for me.
Thank you. 0
Thanks for the help Amit, but the merge does fine. The problem that I am having is that when I merge cell 1 with cell 2 it moves all the other cells left 1 and removes the alignment. I am trying to merge cell #1 and cell #2 together and make them the width of both cells to keep the other cells in the row from sliding over one to the left.
This is what I have
|Cell1 |Cell2 |Cell3 |Cell4 |
This is what I want to do. Merge 1 & 2, but keep 3 and 4 in their original position
|Cell1&2 |Cell3 |Cell4 |
But this is what the merge is doing. It is merging 1 & 2 and shifting 3 & 4 over
|Cell1&2|Cell3 |Cell4 |
I tried doing this in Word and creating a macro to see what VBA code was generated, but it just does the following
Selection.MoveRight Unit:=wdCell
Selection.Cells.Merge
Not sure how to accomplish this in C#