Fred wrote:
Sorry,
I will explain what I'm trying to do, because i think onEndPage is not a correct method to do this.
I need to put header ( using PdfPTable) in all pages of my reports to show some option about the report.
I'm using onEndPage to show the page number in pages and i thought that i could use onEndPage to show the headers whit the options.
But i can't access this options because, how you said, the instance how have the option is not the same that calls onEndPage.
My questions are, how can i do to access this option in onEndPage to do the header?? Do i need to put this in variable document, whose onEndPage use?? Or will i can�t do this using onEndPage?? If I can�t how can I do it???
Thanks
Seems like a simple non-iText-related programming issue.
What I would do is subclass PageEventHelper and write a constructor which takes
the instance of the class with the options as a parameter. Or even better: an interface
implemented by this class that give access to the options. Keep this interface as
a member-variable of your own PageEvent implementation and access the options
in the interface from withing your onEndPage method.
br,
Bruno
------------------------------------------------------- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions
