RE: [iText-questions] Re: cellWidths and RowHeights

2004-10-19 Thread Paulo Soares
You'll need a different table for each row or increase the number of
columns and play with colspan.

Best Regards,
Paulo Soares 

> -Original Message-
> From: Mayank Mishra [mailto:[EMAIL PROTECTED] 
> Sent: Monday, October 18, 2004 6:45 PM
> To: Paulo Soares
> Cc: [EMAIL PROTECTED]
> Subject: Re: [iText-questions] Re: cellWidths and RowHeights
> 
> How do I create a Table structure like the one in attached pdf file
> from iText?I am using PdfPXXX components but I dont know how to change
> cell sizes for each row .
> 
> Thanks 
> Mayank
> 
> 
> On Mon, 18 Oct 2004 16:44:59 +0100, Paulo Soares 
> <[EMAIL PROTECTED]> wrote:
> > Then you don't want a table...
> > 
> > 
> > 
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto:[EMAIL PROTECTED] On
> > > Behalf Of Mayank Mishra
> > > Sent: Monday, October 18, 2004 4:31 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: [iText-questions] Re: cellWidths and RowHeights
> > >
> > > Thanks for the help.But if I set widths at the column level
> > > thats done for the
> > > entire table.The mechanism that I am looking for is :
> > >Write rows of same size BUT different number and/or
> > > relative-widths of
> > > cells in each row.
> > >
> > > regards
> > > Mayank
> > >
> > >
> > >
> > > ---
> > > This SF.net email is sponsored by: IT Product Guide on
> > > ITManagersJournal
> > > Use IT products in your business? Tell us what you think of
> > > them. Give us
> > > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to
> > > find out more
> > > http://productguide.itmanagersjournal.com/guidepromo.tmpl
> > > ___
> > > iText-questions mailing list
> > > [EMAIL PROTECTED]
> > > https://lists.sourceforge.net/lists/listinfo/itext-questions
> > >
> > 
> > ---
> > This SF.net email is sponsored by: IT Product Guide on 
> ITManagersJournal
> > Use IT products in your business? Tell us what you think of 
> them. Give us
> > Your Opinions, Get Free ThinkGeek Gift Certificates! Click 
> to find out more
> > http://productguide.itmanagersjournal.com/guidepromo.tmpl
> > ___
> > iText-questions mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/itext-questions
> >
> 


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


Re: [iText-questions] Re: cellWidths and RowHeights

2004-10-18 Thread Steve Appling
You would probably want to use a different table for each row.  iText tables have 
columns with a
fixed width for the entire table.

We wanted to do something similar to what you demonstrated and experimented with one 
other idea, but
decided it was too goofy.  We had a list of cell widths that needed to total 100%, but 
individual
cell widths could vary on different rows.  We defined a large number of narrow columns 
(like 100
columns) and used column-span to set the widths (span 34 columns for 34% width).  This 
works but is
very inefficient.  We now just break into multiple concatenated tables when we need 
differing cell
widths.

Good luck
- Original Message - 
From: "Mayank Mishra" <[EMAIL PROTECTED]>
To: "Paulo Soares" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Monday, October 18, 2004 1:45 PM
Subject: Re: [iText-questions] Re: cellWidths and RowHeights


> How do I create a Table structure like the one in attached pdf file
> from iText?I am using PdfPXXX components but I dont know how to change
> cell sizes for each row .
>
> Thanks
> Mayank
>
>




---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


Re: [iText-questions] Re: cellWidths and RowHeights

2004-10-18 Thread Mayank Mishra
How do I create a Table structure like the one in attached pdf file
from iText?I am using PdfPXXX components but I dont know how to change
cell sizes for each row .

Thanks 
Mayank


On Mon, 18 Oct 2004 16:44:59 +0100, Paulo Soares <[EMAIL PROTECTED]> wrote:
> Then you don't want a table...
> 
> 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] On
> > Behalf Of Mayank Mishra
> > Sent: Monday, October 18, 2004 4:31 PM
> > To: [EMAIL PROTECTED]
> > Subject: [iText-questions] Re: cellWidths and RowHeights
> >
> > Thanks for the help.But if I set widths at the column level
> > thats done for the
> > entire table.The mechanism that I am looking for is :
> >Write rows of same size BUT different number and/or
> > relative-widths of
> > cells in each row.
> >
> > regards
> > Mayank
> >
> >
> >
> > ---
> > This SF.net email is sponsored by: IT Product Guide on
> > ITManagersJournal
> > Use IT products in your business? Tell us what you think of
> > them. Give us
> > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to
> > find out more
> > http://productguide.itmanagersjournal.com/guidepromo.tmpl
> > ___
> > iText-questions mailing list
> > [EMAIL PROTECTED]
> > https://lists.sourceforge.net/lists/listinfo/itext-questions
> >
> 
> ---
> This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
> Use IT products in your business? Tell us what you think of them. Give us
> Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
> http://productguide.itmanagersjournal.com/guidepromo.tmpl
> ___
> iText-questions mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/itext-questions
>


test.pdf
Description: Adobe PDF document


[iText-questions] Re: cellWidths and RowHeights

2004-10-18 Thread Mayank Mishra
Oops sorry.I meant Table level in when I wrote "But if I set widths at the 
column level "




---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] Re: cellWidths and RowHeights

2004-10-18 Thread Paulo Soares
Then you don't want a table... 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Mayank Mishra
> Sent: Monday, October 18, 2004 4:31 PM
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] Re: cellWidths and RowHeights
> 
> Thanks for the help.But if I set widths at the column level 
> thats done for the 
> entire table.The mechanism that I am looking for is : 
>Write rows of same size BUT different number and/or 
> relative-widths of 
> cells in each row.
> 
> regards
> Mayank
> 
> 
> 
> ---
> This SF.net email is sponsored by: IT Product Guide on 
> ITManagersJournal
> Use IT products in your business? Tell us what you think of 
> them. Give us
> Your Opinions, Get Free ThinkGeek Gift Certificates! Click to 
> find out more
> http://productguide.itmanagersjournal.com/guidepromo.tmpl
> ___
> iText-questions mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/itext-questions
> 


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


[iText-questions] Re: cellWidths and RowHeights

2004-10-18 Thread Mayank Mishra
Thanks for the help.But if I set widths at the column level thats done for the 
entire table.The mechanism that I am looking for is : 
   Write rows of same size BUT different number and/or relative-widths of 
cells in each row.

regards
Mayank



---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions