Re: [iText-questions] border box around unflatten fields

2012-03-01 Thread iText Info
Op 1/03/2012 13:06, Ben Maisano schreef: Hi, Thank you very much for your response. I will take a look at ICEPDF border widths. I think we already tried setting borders to blank but will re-examine. Not sure if that will help. Loop over the fields and get the merged fiel

Re: [iText-questions] border box around unflatten fields

2012-03-01 Thread Ben Maisano
sales person but he called on my cell after business hours (I'm on east coast). Thanks again. -Ben From: iText Info [mailto:i...@1t3xt.info] Sent: Thursday, March 01, 2012 3:32 AM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] border box around unflatten fields Op 29/

Re: [iText-questions] border box around unflatten fields

2012-03-01 Thread iText Info
Op 29/02/2012 20:28, Ben Maisano schreef: Thank you for the reply. I do below our issue is option #2 or #3 below. I looked at the PDF in attachment, and I found fields that define solid borders. These borders probably aren't shown in Reader or in the flattened form because the borders don't ha

Re: [iText-questions] border box around unflatten fields

2012-02-29 Thread iText Info
Op 29/02/2012 15:24, Ben Maisano schreef: Hi, We are currently using iText for mapping information our application captures into PDF documents that have forms and fields setup. We often need to show these documents partially filled out while things may still change down the

[iText-questions] border box around unflatten fields

2012-02-29 Thread Ben Maisano
Hi, We are currently using iText for mapping information our application captures into PDF documents that have forms and fields setup. We often need to show these documents partially filled out while things may still change down the road. For this reason we cannot flatten or pa

Re: [iText-questions] Border issue with nested tbale!

2008-03-25 Thread R . Anitha
Hi All, I used setBorderWidth(0) -it works! PdfPTable outerTable = new PdfPTable(1); outerTable.getDefaultCell().setBorderWidth(0); to remove borders for the nested tables.I set this property to all my nested tables.It worked. All the borders are removed,but i need an outer border for my cont

[iText-questions] Border issue with Nested table!

2008-03-24 Thread R . Anitha
Hi All, I used PdfPTable to create nested tables. Successfully i got the required design ,but i don't want the table border. There is nothing like tbale border for pdfptable exists .I removed the cell border using below code cell.disableBorderSide(PdfPCell.LEFT); cell.disableBorderSide(PdfPCe

Re: [iText-questions] Border Length Control required.

2007-10-26 Thread Bruno Lowagie (iText)
Bhattacharyya Niladri (KSFJ 311) wrote: > Hi Bruno, > I am really sorry. I am putting a header in my pdf document > which is a PdfpTable with two cells, one with an image, another empty. > > It looks fine in the first page. But in the second page onwards there > is no space between the h

Re: [iText-questions] Border Length Control required.

2007-10-26 Thread Bhattacharyya Niladri (KSFJ 311)
: Post all your questions about iText here Subject: Re: [iText-questions] Border Length Control required. Bhattacharyya Niladri (KSFJ 311) wrote: > Hi Bruno, > Thanks a lot for your help yesterday. Now I am facing another > problem. How to put 10f space after my header in each page. I

Re: [iText-questions] Border Length Control required.

2007-10-26 Thread Bruno Lowagie (iText)
Bhattacharyya Niladri (KSFJ 311) wrote: > Hi Bruno, > Thanks a lot for your help yesterday. Now I am facing another > problem. How to put 10f space after my header in each page. I am using > page events, but if I add one more cell row in my header table the image > in the first cell is gett

Re: [iText-questions] Border Length Control required.

2007-10-26 Thread Bhattacharyya Niladri (KSFJ 311)
ght(), writer.getDirectContent()); Please help me. Thanks Niladri. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Lowagie (iText) Sent: Thursday, October 25, 2007 1:42 PM To: Post all your questions about iText here Subject: Re: [iText-questions]

Re: [iText-questions] Border Length Control required.

2007-10-25 Thread Bruno Lowagie (iText)
Bhattacharyya Niladri (KSFJ 311) wrote: > > hi > thanks for telling that..but using events how can i control cell > borders..is there any example available somewhere ? Yes, in chapter 10 of the book: http://itext.ugent.be/itext-in-action/ You'll also find some examples in the free online tut

Re: [iText-questions] Border Length Control required.

2007-10-25 Thread Bhattacharyya Niladri (KSFJ 311)
all your questions about iText here Subject: Re: [iText-questions] Border Length Control required. You'll have to use a table or cell vent to customized the border that way. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf

Re: [iText-questions] Border Length Control required.

2007-10-25 Thread Paulo Soares
e.net > Subject: [iText-questions] Border Length Control required. > > Hi >I have a problem while working with iText, please advise > me if possible. > > I want to control the length of the border for any particular > PdfPCell. I want > to colour Top one as Bl

[iText-questions] Border Length Control required.

2007-10-25 Thread Niladri
Hi I have a problem while working with iText, please advise me if possible. I want to control the length of the border for any particular PdfPCell. I want to colour Top one as Blue and the middle space as White in between two cells. If i do that like this : PdfPCell cell = new PdfPC

Re: [iText-questions] Border - RTF

2006-11-17 Thread Mark Hall
On Friday 17 November 2006 22:33, Henry Lu wrote: > Thank you very much for your response. I figured it out how to do it. > One more question. Do you know if the following statement works? > > cel.setVerticalAlignment("CENTER"); > > It didn't work for me somehow. cel.setHorizontalAlignm

Re: [iText-questions] Border - RTF

2006-11-17 Thread Henry Lu
Thank you very much for your response. I figured it out how to do it. One more question. Do you know if the following statement works? cel.setVerticalAlignment("CENTER"); It didn't work for me somehow. cel.setHorizontalAlignment("CENTER"); works just fine. -Henry Mark Hall wrote:

Re: [iText-questions] Border - RTF

2006-11-17 Thread Mark Hall
On Friday 17 November 2006 14:34, Henry Lu wrote: > To display only bottom line of border of header, I have code: > > But it displays whole border. > > Why? How to get it worked? The code looks ok. Either you are running into a really weird bug (in which case perhaps you could send the offending R

Re: [iText-questions] Border - RTF

2006-11-17 Thread Henry Lu
Thank you Bruno, for your info. I fixed the space between table. But I tried all I can and still cannot make a footer and header with only one line displayed. Could you give me some hint? -Henry Bruno Lowagie (iText) wrote: >Henry Lu wrote: > > > >>Why? How to get it worked? >> >> > >I c

Re: [iText-questions] Border - RTF

2006-11-17 Thread Bruno Lowagie (iText)
Henry Lu wrote: > Why? How to get it worked? I could be mistaken, but you have posted 2 questions today that were already answered yesterday, and the day before. About the border: post the RTF. About the space between the tables: read Mark's answer. br, Bruno --

[iText-questions] Border - RTF

2006-11-17 Thread Henry Lu
To display only bottom line of border of header, I have code: Table headerTable = new Table(1); //headerTable.setBorderColor(new Color(255,255,255)); //headerTable.setDefaultCellBorderColor(new Color(255,0,0)); headerTable.setBorderColorTop(new Color(255,255,255

Re: [iText-questions] border in PdfPTable

2006-09-19 Thread Bruno Lowagie (iText)
Rüdiger Kaatz wrote: > Hi Bruno, > > great idea, thanx. Remember the problem I had the other day showing an > image inside a table (catalunya...)? > Here is my solution, I have to load the image via the Jpeg class and > not the generic Image one: > > ClassLoader cl = ITextHelper.class.getClassLoa

Re: [iText-questions] border in PdfPTable

2006-09-19 Thread Rüdiger Kaatz
Hi Bruno, great idea, thanx. Remember the problem I had the other day showing an image inside a table (catalunya...)? Here is my solution, I have to load the image via the Jpeg class and not the generic Image one: ClassLoader cl = ITextHelper.class.getClassLoader(); URL url = cl.getResource("imag

Re: [iText-questions] border in PdfPTable

2006-09-19 Thread Bruno Lowagie (iText)
Rüdiger Kaatz wrote: > is this what you are looking for? > > PdfPTable mainTable = new PdfPTable(2); > > PdfPCell cell1 = new PdfPCell("some borderless cell"); > cell1.setBorder(Rectangle.NO_BORDER); > > PdfPCell cell2 = new PdfPCell("another borderless cell"); > cell2.setBorder(Rectangle.NO_BOR

Re: [iText-questions] border in PdfPTable

2006-09-19 Thread Rüdiger Kaatz
is this what you are looking for? PdfPTable mainTable = new PdfPTable(2); PdfPCell cell1 = new PdfPCell("some borderless cell"); cell1.setBorder(Rectangle.NO_BORDER); PdfPCell cell2 = new PdfPCell("another borderless cell"); cell2.setBorder(Rectangle.NO_BORDER); mainTable.addCell(cell1); mainTa

[iText-questions] border in PdfPTable

2006-09-19 Thread santosh choudhary
Hi,   Please find the attached file.ThankYou - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surv

Re: [iText-questions] border in itext

2006-09-19 Thread Rüdiger Kaatz
you have to set the borders to Rectangle.NO_BORDER of all cells you add to the table. On 9/19/06, santosh choudhary <[EMAIL PROTECTED]> wrote: > Hi , > I am usig the itext librery to convert from html to pdf view. > I am using PdfPtable and PdfPcell to create table in pdf document. > but I am faci

[iText-questions] border in itext

2006-09-19 Thread santosh choudhary
Hi ,I am usig the itext librery to convert from html to pdf view.I am using PdfPtable and PdfPcell to create table in pdf document.but I am facing a problem to omit or display the border of table according to html Thank you-- Santosh kumar choudahrySoftware EngineerQualtech-consultants Pvt. Ltd.Mob

Re: [iText-questions] Border around a whole PdfPTable

2005-02-08 Thread Steve Appling
ED]> To: Sent: Tuesday, February 08, 2005 8:39 AM Subject: [iText-questions] Border around a whole PdfPTable Can I display a border around the outer edge of a PdfPTable but not around each cell? *** EDF Energy plc inter

[iText-questions] Border around a whole PdfPTable

2005-02-08 Thread Denham, Martin
Can I display a border around the outer edge of a PdfPTable but not around each cell? *** EDF Energy plc internet e-mail disclaimer This e-mail and any files transmitted with it are confidential and may be protected

RE: [iText-questions] border in PdfPTable

2003-07-01 Thread Paulo Soares
D] > Subject: [iText-questions] border in PdfPTable > > Hi. > can anyone says why i see a bordered table in my pdf even if i set no > border > for my PdfPtable? > > PdfPTable footer = new PdfPTable(1); > footer.setTotalWidth(convertToPoints(50)); //convertToPoints: method

Re: [iText-questions] border in PdfPTable

2003-07-01 Thread Roberto Cipollini
PROTECTED]> Sent: Tuesday, July 01, 2003 12:12 PM Subject: RE: [iText-questions] border in PdfPTable Maybe I'm wrong but I fear you'll have to set for each cell NO_BORDER It's curious because the iText API I have says " getDefaultCell public PdfPCell getDefaultCell() Get

RE: [iText-questions] border in PdfPTable

2003-07-01 Thread Sergio Lopez Rodriguez
ll)." so this makes me thinks that if u add a PdfPCell setting NO_BORDER will have no effect Best Regards -Mensaje original- De: Roberto Cipollini [mailto:[EMAIL PROTECTED] Enviado el: martes 1 de julio de 2003 11:32 Para: [EMAIL PROTECTED] Asunto: [iText-questions] border in PdfPTa

[iText-questions] border in PdfPTable

2003-07-01 Thread Roberto Cipollini
Hi. can anyone says why i see a bordered table in my pdf even if i set no border for my PdfPtable? PdfPTable footer = new PdfPTable(1); footer.setTotalWidth(convertToPoints(50)); //convertToPoints: method to convert from millimeters to point footer.getDefaultCell().setBorder(com.lowagie.text.Recta

RE: [iText-questions] border

2003-03-20 Thread QJian
ceforge.net <[EMAIL PROTECTED]> cc:

Re: [iText-questions] border

2003-03-20 Thread Kenny G. Dubuisson, Jr.
EMAIL PROTECTED]> Sent: Thursday, March 20, 2003 2:20 PM Subject: RE: [iText-questions] border > hi all, > i have my reports and i create a table in every reports. > I want a table without border. > how can i do it? > I try to set the bor

RE: [iText-questions] border

2003-03-20 Thread jousha
hi all, i have my reports and i create a table in every reports. I want a table without border. how can i do it? I try to set the border to zero, but it's the same excuse me for my english Massimiliano Scopri le nuove cartoline del Grande Fratello! http://

[iText-questions] border color and width PdfPTable

2002-11-14 Thread navin kumar
Hello I am using PdfPTable since it has the provision of absolute positioning. How to set the border color and width for the same. Could any one guide me on this. Thanks in advance Navin __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host y

Re: [iText-questions] Border in PdfPTable

2002-10-02 Thread postmaster
Quoting Ravindra B Mamidipaka <[EMAIL PROTECTED]>: > I am a new to IText package. I need some help > regarding the borders on PdfPTables. > > I am trying to add a pdfp table to another pdfp table as a > cell. When I add the table, it is generating a border. > How do I disable the border in a Pdf

[iText-questions] Border in PdfPTable

2002-10-02 Thread Ravindra B Mamidipaka
I am a new to IText package. I need some help regarding the borders on PdfPTables. I am trying to add a pdfp table to another pdfp table as a cell. When I add the table, it is generating a border. How do I disable the border in a PdfPTable ? Thanks in advance. __

[iText-questions] border in Tables from xml

2002-03-15 Thread Simon Moore
Hi I'm checking out iText to create order using data from a db and itext. I'm following the exercises in the tutorial and i've created a modification of the tutorial example but I'm unable to get the border of the table (nor it's colour) to appear? I would appreciate any help on this matter.. T