iText

How to change width of single column of table?

I am looking to change the width of a column to fit a longer word.

hello I have created table in a PDF file using iText. The heading of my table columns are "Medicine Name", "Doses", and "time: This is what my columns look like:

|Medicin|Doses|time|
| e name|     |    |

As you can see the word "Medicine" is split into "Medicin" and "e". I want to avoid this by changing the width of the first column, but I don't know how to do that.

Posted on StackOverflow on Jun 10, 2014 by DCoder

The ColumnWidths example demonstrates different ways of changing the width of a column. Note that the way we create tables in iText 7 differs from the iText 5 way, as the PdfPTable class doesn’t exist anymore. This is one specific way:

Java
Table table = new Table(new float[]{2, 1, 1});

Now the width of the first column is double the size of the second and third column.

Click How to change width of single column of table? | iText 5 PDF Development Guide if you want to see how to answer this question in iText 5.