I have implemented the following code to align two phrases/two columns within a table:
table = new PdfPTable(2);
table.TotalWidth = 450f;
table.LockedWidth = true;
float[] widths= new float[] { 100f, 350f };
table.SetWidths(widths);
table.WidthPercentage = 85;
table.HorizontalAlignment = Element.ALIGN_LEFT;
cell = new PdfPCell();
cell = PhraseCell(new Phrase("Repair 2 - Tongue pig biltong picanha:", newfntbld), PdfPCell.ALIGN_LEFT);
cell.PaddingTop = 12f;
table.AddCell(cell);
cell = PhraseCell(new Phrase("Ham beef ball tip, pastrami sausage ribeye meatloaf salami kielbasa. Ground round bresaola pastrami ham capicola pork belly, tri-tip drumstick. Beef hamburger pork loin bacon doner chuck shank strip steak ham hock meatloaf. Flank meatball swine frankfurter.", newlightfnt), PdfPCell.ALIGN_LEFT);
cell.PaddingTop = 12f;
cell.Border = 0;
table.AddCell(cell);
The current output I am getting can be viewed here.
However, my desired layout is as shown in this image: https://i.sstatic.net/XU7s2.png