Currently I am working Generating Pdf file. My problem is that I want to print my addressTable into absolute position
PdfWriter writer = PdfWriter.GetInstance(doc,stream)
PdfContentByte cb = writer.getDirectContent();
ColumnText ct = new ColumnText(cb);
Phrase myText = new Phrase("TEST paragraph\nNewline");
ct.SetSimpleColumn(myText, 34, 750, 580, 317, 15, Element.ALIGN_LEFT);
ct.Go();
This is my code but getDirectContent() give me error. So please any body help me that how to print my address table into fixed position.