Hello.
I have this problem: my local Micrisift Office Language Settings on my computer are set to Hebrew (right to left language) and I created a wrod document by RtfWriter2 writer which contains a Table (not PdfPTable which is not supported by RtfWriter2 ), so the Cells order inside the Table is from the right to the left (inverted from what I wanted). How can I set the Cells order for left to right (English format)? ( and not by changing my local Micrisift Office Language Settings on my computer but from the iText API). Please let me know if there's a way to change the Language Settings from the iText API for a wrod document created by RtfWriter2.
Something like:
PdfWriter.getInstance(getOutputDocument(), os).setRunDirection(PdfWriter.RUN_DIRECTION_LTR)
But on RtfWriter2 instead.
Or something like:
PdfPTable pdfpTable = new PdfPTable(2);
pdfpTable.setRunDirection(PdfWriter.RUN_DIRECTION_LTR);
But on Table instead (because as I mentioned PdfPTable which is not supported by RtfWriter2).

Another question is: I tried to use PdfWriter.getInstance(getOutputDocument(), os).setRunDirection(PdfWriter.RUN_DIRECTION_RTL) and it didn't do anything (I saw no change from the default or from using RUN_DIRECTION_LTR), any idea?

Thank you, Oren.

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to