Hi there!

Is it possible to place a table at specific coordinates?

This can be done with text the following way:
myPDFContentByte.showTextAligned(PdfContentByte.ALIGN_LEFT, "My Text", 250, 100, 0);

I am using Table (not PdfPTable & PDFTable) becose I need rowspans...
And I "sometimes" want to place a table at "some" position on PdfPageEvent 
onEndPage(...)

I have not found any way how to ensure this...

It would be great to have such a method in PDFContentByte object:

void addElement(Element el, float a, float b)

Thanx for your time.


FEATURE REQUEST:
Could com.lowagie.text.Table implement Clonable interface (no methods needed)?
There are many similar tables in one of my PDF outputs.
With this feature I could make something like "master" with headerwidths[], fixed 
table headers and some borders...
Than I call:
Table anotherTable = (Table) masterTable.clone();

...and I can continue (adding cells) to anotherTable.

GG

PS: Currently I have iText v.0.92



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to