[iText-questions] PDF Page events problem.

2007-12-23 Thread Niladri Bhattacharyya
Hi All, I am facing problem in adding Header and Footer for my document in these lines : PdfWriter writer = PdfWriter.getInstance(document, response.getOutputStream()); writer.setPageEvent(new PdfPageEvents()); These lines used to work for stand-alone exemples but not going to th

Re: [iText-questions] Displaying Hebrew or Arabic in a PdfPCell?

2007-12-23 Thread Paulo Soares
- Original Message - From: "Brian" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Sunday, December 23, 2007 9:23 PM Subject: Re: [iText-questions] Displaying Hebrew or Arabic in a PdfPCell? > Hi Bruno, > > Thank you again for the quick response. > > I checked

Re: [iText-questions] Displaying Hebrew or Arabic in a PdfPCell?

2007-12-23 Thread Brian
Hi Bruno, Thank you again for the quick response. I checked PdfPCell's RunDirection property, however in iTextSharp the property is read-only. It returns an integer, but doesn't allow to set a value. I'm working against a rather tight deadline and was wondering if perhaps, someone here could he

Re: [iText-questions] Displaying Hebrew or Arabic in a PdfPCell?

2007-12-23 Thread Bruno Lowagie
Brian wrote: Hi Bruno, Thank you very much for the quick response! Please reply to the mailing list; that way you ensure that your question gets a fast answer. In other words: please don't mail me personally (because I get too much mail already). I program in .Net, so I've been using iTextSh

Re: [iText-questions] Displaying Hebrew or Arabic in a PdfPCell?

2007-12-23 Thread Bruno Lowagie
Brian wrote: I'd much prefer using PdfPTable, as it seems more straightforward and versatile. Is there a way to display Hebrew or Arabic text in a PdfPCell? Yes, that's possible. Read on in chapter 9 and you'll find out that the "Peace" example does exactly what you're asking for: http://itext.

[iText-questions] Displaying Hebrew or Arabic in a PdfPCell?

2007-12-23 Thread Brian
Hi Everyone, I was wondering if someone could please help me with a problem related to displaying right-to-left languages, such as Hebrew and Arabic. I've created the layout I want using a PdfPTable and it works well in English. However, I'm looking for a way to insert Hebrew text into the PdfPCe

Re: [iText-questions] Problem with splitting cells

2007-12-23 Thread Bruno Lowagie
Dominic Maricic wrote: Hi Bruno, Thanks for the quick response. I have the book, and read it often :D When using the table.setSplitLate(false); it does not create the full page cell like you said, but the cell still starts on the next page. How can I make it start right below the previous cell a

Re: [iText-questions] Another newbie, another question!

2007-12-23 Thread Bruno Lowagie
djmalachi wrote: Thanks, I'll try that. Are there any restrictions or shortcomings to using an "external" object I should be aware of? Not that I know of. On the contrary, once you get to chapter 12, you'll see you can treat each PdfTemplate as an OCG layer. I use this frequently to show images

Re: [iText-questions] Another newbie, another question!

2007-12-23 Thread djmalachi
Thanks, I'll try that. Are there any restrictions or shortcomings to using an "external" object I should be aware of? Merry Christmas!! > you could create several PdfTemplate objects, and treat > them as layers. Then add the objects to the PdfContentByte > in the order you prefer. > -- View