Re: [iText-questions] adjust text in cell

2011-12-14 Thread aszomor
Hi, pdfTable.DefaultCell.HorizontalAlignment = Element.ALIGN_LEFT; pdfTable.DefaultCell.NoWrap = true; pdfTable.AddCell(new Phrase("bla bla", FontFactory.GetFont("Courier", 5))); OR pdfCell = new PdfPCell(new Phrase("bla bla", FontFactory.GetFont("Courier", 5))); pdfCell.HorizontalAlignment =

[iText-questions] adjust text in cell

2011-12-13 Thread Faraz Fallahi
Hi id love to adjust the text in the cells to just be as long as the columns width. I dont want it to break line. i would just like to have the text cut and followed by dots like "this is the text i want to ha..." does somebody know the solution? greez noise