Zenith wrote:
Chunk academic_year = new Chunk("                  ");
                        academic_year.setGenericTag("academic_year");> Hi,
> 
> Can anyone tell me how can I create a form field in a paragrah using
> itext?

I use class FieldPositioningEvents and chunks:

FieldPositioningEvents fpe = new FieldPositioningEvents();
writer.setPageEvent(fpe);
Chunk academic_year = new Chunk("                  ");
academic_year.setGenericTag("academic_year");

The academic_year chunk can be added to the Paragraph.
br,
Bruno

-------------------------------------------------------------------------
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