ColumnText.showTextAligned is a static method that outputs the first line of
text to your PdfContentByte (eg writer)
You may wish to think about instantiating ColumnText and adding a Chunk or
Phrase, which it will text wrap as necessary (in C#):
ColumnText ct = new ColumnText(writer);
ct.SetSimpleColumn(x, y, x + width, y + height);
ct.AddText(chunk);
ct.Go();
-- 
View this message in context: 
http://www.nabble.com/ColumnText-tf2015202.html#a5546367
Sent from the iText - General forum at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to