Message 1 of 2
Merging two cells in a row?

Not applicable
08-12-2013
03:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
I am trying to merge two cells in one but i cannot find proper method to do that. Any suggestions?
Example:
I am creating a table with dynamic number of rows and columns:
for (int i = 3; i < tbRight.NumRows; i++) { for (int j = 0; j < tbRight.NumColumns; j++) { if (num2 == numCircles - 1) { Cell c = new Cell(tbRight, i, j); c.TextHeight = 450; tbRight.SetTextString(i, j, (num2 + 1).ToString() + "# - " + rightConn[num2]); num2++; } else if (num2 > numCircles - 1) { } else { Cell c = new Cell(tbRight, i, j); c.TextHeight = 450; tbRight.SetTextString(i, j, (num2 + 1).ToString() + "# - " + rightConn[num2]); num2++; } } }
First row of the table is the header and i have two free rows with two columns each. I want to merge all of them to look like one row.
On the other hand, is it possible to align the text in the table in the middle and also the vertical align to be in the middle.
Thank you in advance!