You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to merge the cells vertically at Rows[0].Cells[0] and Rows[1].Cells[0], but when calling the following, nothing happens, the cells are not merged. table.Rows[0].Cells[0].MergeVertically(1);
I was able to merge the cells vertically at Rows[1].Cells[0] and Rows[2].Cells[0] without problem. The following works fine. table.Rows[1].Cells[0].MergeVertically(1);
So issue seems to be with Rows[0].Cells[0]
The text was updated successfully, but these errors were encountered:
I want to merge the cells vertically at Rows[0].Cells[0] and Rows[1].Cells[0], but when calling the following, nothing happens, the cells are not merged.
table.Rows[0].Cells[0].MergeVertically(1);
I was able to merge the cells vertically at Rows[1].Cells[0] and Rows[2].Cells[0] without problem. The following works fine.
table.Rows[1].Cells[0].MergeVertically(1);
So issue seems to be with Rows[0].Cells[0]
The text was updated successfully, but these errors were encountered: