I have created a table with 3 columns and another table with 6 columns which is then added to another table to make it into a single table. I want to align the second column of the 3 column table and second columns of 6 column table like this:
Can anyone tell me how to align the second columns of 2 different table? I am using iTextsharp for creating the tables.
There are multiple ways to do this. I'll explain two.
Two tables with aligned column widths
Set the column widths to get the desired alignment.
... with an outer table
You mentioned adding both tables in another table. If that's an explicit requirement, it's possible:
The visual result is the same as above.
Using colspans
Instead of thinking of two separate tables, you can also consider this one table where some cells are spanning multiple columns.
The benefit of this approach is that you don't have to fiddle with keeping column widths consistent between multiple tables. Because this is one table, the columns will always be aligned.