No, the HtmlWriter in iText doesn't support any form object.
The only way you could add things like
"<FORM><INPUT TYPE="SUBMIT" /></FORM>"
is to add the above String immediately to the HtmlWriter object.
HtmlWriter html = HtmlWriter.getInstance(..., ...);
...
html.add("<FORM><INPUT TYPE=\"SUBMIT\" /></FORM>");
It's a hack, I realize it's not very elegant.
br,
Bruno------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions
