Re: RE: [iText-questions] margins

2003-03-27 Thread Joel Matos
... thanks joel [EMAIL PROTECTED] writes: :PdfPTable.setHorizontalAlignment(). : :Best Regards, :Paulo Soares : :> -Original Message- :> From: Joel Matos [SMTP:[EMAIL PROTECTED] :> Sent:Thursday, March 27, 2003 17:21 :> To: [EMAIL PROTECTED] :> Subject:

[iText-questions] margins

2003-03-27 Thread Joel Matos
Hi! I have a document with some defined margins. When i have a PDFtable with a big value for WidthPercentage, and i add the table to the document, part of the table gets out of the papper... This is no problem, actually it is the exact behaviour that i expect, except for one thing... There is no

Re: RE: [iText-questions] pdftable

2003-03-13 Thread Joel Matos
:Paulo Soares : :> -Original Message- :> From:Joel Matos [SMTP:[EMAIL PROTECTED] :> Sent:Thursday, March 13, 2003 11:49 :> To: [EMAIL PROTECTED] :> Subject: [iText-questions] pdftable :> :> Hi! :> I'm having some problens seting column w

[iText-questions] pdftable

2003-03-13 Thread Joel Matos
Hi! I'm having some problens seting column widths... Can i set absolute values, even if it causes the table to loose some columns? Like for example i have a report on the browser and user sets column widths in pixels... I want those columns in the pdftable to have user values even if only half of

[iText-questions] basefont

2003-02-18 Thread Joel Matos
Hello again! I have a basefont for a footer template (Page X of Y): bf = BaseFont.createFont("c:\\windows\\fonts\\arialnb.ttf", BaseFont.CP1252, BaseFont.NOT_EMBEDDED); but i can't find a way to change text's color... Can you help me? Thanks!!

Re: RE: RE: [iText-questions] headers and footers

2003-02-17 Thread Joel Matos
I'm sorry for this extra message but the code had a bug (bad copy-paste)... Where you see: cb.setLineWidth(0.5F); cb.setRGBColorStrokeF(0xDF, 0xFF, 0xFF); cb.moveTo(10, img.plainHeight() + 25); // document's borders are 10, 10, img.plainHeight() + 25, 10 cb.line

Re: RE: RE: [iText-questions] headers and footers

2003-02-17 Thread Joel Matos
: :> How can i draw the line? I don't think PdfContentByte.lineTo(float :> x, float y) will work and i can't change :> line's width and color with this and i need to do it... :> : You can do everything with PdfcontentByte. : :> I also want to add an image to my header with onStartP

Re: RE: [iText-questions] headers and footers

2003-02-17 Thread Joel Matos
Hello!! I still have some doubts about this... : :> Hi! :> Can i format the line that page's header and footer put on the page :> (width, length, color)? :> : Width and color. :> Can i add an extra line without pdfPageEvent? :> : No. :> If not, should i do it with onStartPage event or

[iText-questions] headers and footers

2003-02-13 Thread Joel Matos
Hi! Can i format the line that page's header and footer put on the page (width, length, color)? Can i add an extra line without pdfPageEvent? If not, should i do it with onStartPage event or onEndPage event? In this case i have to draw a line, right? Thanks!! --