Re: [iText-questions] Tables for vertical alignment?

2015-08-31 Thread blowagie
The iText mailing-list has been abandoned in favor of StackOverflow. See http://itextpdf.com/support -- View this message in context: http://itext.2136553.n4.nabble.com/Tables-for-vertical-alignment-tp4660877p4660878.html Sent from the iText mailing list archive at Nabble.com.

[iText-questions] Tables for vertical alignment?

2015-08-30 Thread gman1963
I am having vertical alignment issues when generating PDF documents. The data which is dynamic in format must fit on N sheets of 8.5X11. Each 33 lines of data must fit on the upper or lower 1/2 of the page with a perforation in the middle of the page. Will tables/cells help me achieve the proper

Re: [iText-questions] tables in columns (multiple pages) event schedule PDF file

2014-07-03 Thread Randy E. Hoover
: [iText-questions] tables in columns (multiple pages) event schedule PDF file On 7/1/2014 10:40 PM, Randy E. Hoover wrote: i figured out using iTextSharp very quickly and was reading from MS SQL DB right away and creating tables in the PDF like i wanted to - except i need to create 2 columns and

Re: [iText-questions] tables in columns (multiple pages) event schedule PDF file

2014-07-01 Thread iText mailing list
On 7/1/2014 10:40 PM, Randy E. Hoover wrote: i figured out using iTextSharp very quickly and was reading from MS SQL DB right away and creating tables in the PDF like i wanted to - except i need to create 2 columns and multiple pages (4 in total) ... i tried using multi columns with tables bu

[iText-questions] tables in columns (multiple pages) event schedule PDF file

2014-07-01 Thread Randy E. Hoover
i figured out using iTextSharp very quickly and was reading from MS SQL DB right away and creating tables in the PDF like i wanted to - except i need to create 2 columns and multiple pages (4 in total) ... i tried using multi columns with tables but was not successful with going down the left si

Re: [iText-questions] Tables and borders

2011-07-01 Thread hhn000
Yes, I do. and it's not very different from a factory method that copies the table.DefaultCell. I think I just need to read more :-). On Fri, Jul 1, 2011 at 08:59, 1T3XT BVBA wrote: > On 1/07/2011 8:50, hhn000 wrote: > > Yeah, that's what I ended up doing, I just feel it should be "cleaner" > >

Re: [iText-questions] Tables and borders

2011-07-01 Thread 1T3XT BVBA
On 1/07/2011 8:50, hhn000 wrote: > Yeah, that's what I ended up doing, I just feel it should be "cleaner" > or "smarter" (I really like the idea of setting borders, etc all in > one place, table.DefaultCell - now I have it in my own method, also > doable) Yes, but suppose you have a table with p

Re: [iText-questions] Tables and borders

2011-06-30 Thread hhn000
Yeah, that's what I ended up doing, I just feel it should be "cleaner" or "smarter" (I really like the idea of setting borders, etc all in one place, table.DefaultCell - now I have it in my own method, also doable), this is not meant in a bad way, this is a two platform library, which in it self ha

Re: [iText-questions] Tables and borders

2011-06-30 Thread Emiel Ackermann
In Java, I would instantiate the cell and disable the border of the cell with: cell.setBorder(Rectangle.NO_BORDER); before returning it within your method private PdfPCell NewCell(string text, FaxFonts font, int colspan) { return new PdfPCell(new Phrase(text, _fonts[(int)f

Re: [iText-questions] Tables and borders

2011-06-30 Thread hhn000
It seems that the problem is that I'm using new PDFPCell to create the new cell instead of using AddCell(Phrase), so it doesn't know about the table. But if I create the new cell from table.DefaultCell, doesn't it create a copy of the table? which gets thrown away when adding the cell with AddCell

Re: [iText-questions] Tables and borders

2011-06-30 Thread hhn000
Does anyone have any ideas about the problem? I have checked the source, but I can't see any difference between AddCell(string) and AddCell(new PDFPCell(new Phrase(string, font). If so, the only change is the Colspan, I haven't checked the generation from the table, but there doesn't seem to be any

Re: [iText-questions] Tables and borders

2011-06-29 Thread hhn000
Ok, I'm adding the rows using the following code: public void DrawBlock(ITextColumns block) { var table = new PdfPTable(block.Widths); table.WidthPercentage = 100f; table.DefaultCell.Border = Rectangle.NO_BORDER; AddRows(table, block

Re: [iText-questions] Tables and borders

2011-06-29 Thread 1T3XT BVBA
On 29/06/2011 9:24, hhn000 wrote: > > Does anyone have any idea of what I'm doing wrong? We don't have sufficient information to answer that question. 1. You say that you initially turned borders off and it worked. 2. Then you turned them on and it worked. 3. Now you turned them back off and it no

[iText-questions] Tables and borders

2011-06-29 Thread hhn000
Hi, I'm using iTetSharp 5.0.6. While creating some tables for a document (actually a list of items formatted using a PDFPTable), I initially turned off the borders on the tables' DefaultCell, then turned it back on, for debugging purposes, and now they stay on even though I set the table's Defaul

Re: [iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread 1T3XT BVBA
Op 4/01/2011 18:59, Johannes Becker schreef: > Hi, > > thanks again for the quick reply. > > > so whatever problem there was: it's already fixed ;-) > Good job. > > Since I'm stuck to an old version, might there be a > workaround (i.e. wrapping my tables in some other object)? Not that I know of

Re: [iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread Johannes Becker
Hi, thanks again for the quick reply. > so whatever problem there was: it's already fixed ;-) Good job. Since I'm stuck to an old version, might there be a workaround (i.e. wrapping my tables in some other object)? Thanks Jonny Am 04.01.2011 18:10, schrieb 1T3XT BVBA: > /* in_action/chapter1

Re: [iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread 1T3XT BVBA
Op 4/01/2011 17:51, Johannes Becker schreef: Hi, thanks for the quick reply. Does the problem also exist in the most recent iText version? Yes it does (iText 5.0.5). It doesn't in the SNAPSHOT version of iText 5.0.6. See attached code sample as well as the resulting PDF, so whatever proble

Re: [iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread 1T3XT BVBA
Op 4/01/2011 17:51, Johannes Becker schreef: > Hi, > > thanks for the quick reply. > >> Does the problem also exist in the most recent iText version? > Yes it does (iText 5.0.5). OK, I'll test it to see if you've found a bug. (It looks like one, but I need to make sure.)

Re: [iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread Johannes Becker
Hi, thanks for the quick reply. > Does the problem also exist in the most recent iText version? Yes it does (iText 5.0.5). Thanks Jonny Am 04.01.2011 17:37, schrieb 1T3XT BVBA: > Op 4/01/2011 14:45, Johannes Becker schreef: >> Hi all, >> >> thanks to help of you (especially 1T3XT BVBA) I'm n

Re: [iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread 1T3XT BVBA
Op 4/01/2011 14:45, Johannes Becker schreef: > Hi all, > > thanks to help of you (especially 1T3XT BVBA) I'm now able to create > tables with PdfFormFields in them. > > But now I'm having a strange side-effect: > The code attached generates the attached pdf. As you can see, the > PdfFormFields of

[iText-questions] Tables and FormFields: Is this a bug?

2011-01-04 Thread Johannes Becker
Hi all, thanks to help of you (especially 1T3XT BVBA) I'm now able to create tables with PdfFormFields in them. But now I'm having a strange side-effect: The code attached generates the attached pdf. As you can see, the PdfFormFields of the last table are drawn on the second page, not in the t

[iText-questions] tables and tagged PDF

2007-10-22 Thread Johannes Hahn
Hi all! I'm trying to extend my existing iText code in order to get a legal tagged PDF. I had no problems creating a simple (tagged) text document by adding marked content and writing text to the direct content as described in the appendix F in the iText in action manual. But my document contai

Re: [iText-questions] tables text and margin

2007-07-16 Thread Bruno Lowagie
Corwin noname wrote: How to get highest character to touch the top border of the cell? Is it possible to do that? I just checked the book and it should be setUseAscender instead of setAscender. I hope you already found this out yourself. In any case: reading chapter 6 of the book would have sav

Re: [iText-questions] tables text and margin

2007-07-16 Thread Bruno Lowagie
Corwin noname wrote: > How to get highest character to touch the top border of the cell? Is it > possible to do that? I assume you have used setDescender(true); (although you didn't say anything about the solution you were using), but did you setAscender(true); And what about the leading of the c

Re: [iText-questions] tables text and margin

2007-07-15 Thread Corwin noname
Thank you Bruno.Now I know why sealing in the houses are so high :)But I still don’t know how to get the top border to touch the top of the text. Or I rephrase the question:How to get highest character to touch the top border of the cell? Is it possible to do that?ThanksDmitri> > I need to inser

Re: [iText-questions] tables text and margin

2007-07-14 Thread Bruno Lowagie
Corwin noname wrote: > I need to insert text into a table so top and bottom of the text touches > the cells borders. > > At the moment I have managed the text touch the bottom border but I have > failed to do this with the top of the text. Suppose that you are an architect, and I ask you to bui

[iText-questions] tables text and margin

2007-07-12 Thread Corwin noname
I need to insert text into a table so top and bottom of the text touches the cells borders. At the moment I have managed the text touch the bottom border but I have failed to do this with the top of the text. Any ideas how it can be done? Thanks Dmitri __

Re: [iText-questions] Tables in header & footer

2006-12-15 Thread zhu hui
i have add a table into several particular pages using pageevent related objects and methods. just by set the top margins of the page which i want to add that table to. and by the page number info and margin height info, it can work to meet my project' need, hehe~~^_^ On 12/16/06, Bruno Lowagie <

Re: [iText-questions] Tables in header & footer

2006-12-15 Thread Bruno Lowagie
Alexis Pigeon wrote: > Hi Raffaele, > > On 14/12/06, GAMBELLI Raffaele <[EMAIL PROTECTED]> wrote: >> Is there anybody out there :-)? > > Bruno Lowagie (and Paulo Soares too I think), the main contributors of > iText and the ones that provide 99% of the answers on the mailing > list, are currently

Re: [iText-questions] Tables in header & footer

2006-12-14 Thread Paulo Soares
Don't use Table, don't use HeaderFooter. Neither of them can be used in a page event. Paulo From: [EMAIL PROTECTED] on behalf of GAMBELLI Raffaele Sent: Thu 14-Dec-06 10:56 To: Post all your questions about iText here Subject: Re: [iText-questions]

Re: [iText-questions] Tables in header & footer

2006-12-14 Thread GAMBELLI Raffaele
Ok! I'm sorry and scuse me. Raffaele -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Alexis Pigeon Sent: giovedì 14 dicembre 2006 11.47 To: Post all your questions about iText here Subject: Re: [iText-questions] Tables in header & footer Hi Raff

Re: [iText-questions] Tables in header & footer

2006-12-14 Thread Alexis Pigeon
Hi Raffaele, On 14/12/06, GAMBELLI Raffaele <[EMAIL PROTECTED]> wrote: > Is there anybody out there :-)? Bruno Lowagie (and Paulo Soares too I think), the main contributors of iText and the ones that provide 99% of the answers on the mailing list, are currently at Javapolis (www.javapolis.com), a

Re: [iText-questions] Tables in header & footer

2006-12-14 Thread GAMBELLI Raffaele
t: [iText-questions] Tables in header & footer Hi all, I have a very simple question: If I want to insert a table inside my header & footer, I should override the onEndPage(PdfWriter writer, Document document) method as seen in this http://itextdocs.lowagie.com/examples/com

[iText-questions] Tables in header & footer

2006-12-13 Thread GAMBELLI Raffaele
Hi all, I have a very simple question: If I want to insert a table inside my header & footer, I should override the onEndPage(PdfWriter writer, Document document) method as seen in this http://itextdocs.lowagie.com/examples/com/lowagie/examples/directcontent/pageevents/EndPage.java In fact, I

[iText-questions] Tables in PDF

2006-10-12 Thread Vishal Lavti
Hi All, I have been struggling to write a code to use row-span in PdfPTable. 1. Nested Tables splits the cell and this is not the desired. Has anyone achieved doing this in any other way? 2. Is there any way to show two tables in one horizontal in PDF document. I guess this will help me in solving

[iText-questions] Tables and paragraph indentation

2006-08-08 Thread Doležel Petr
Please, I have a pdf document with some paragraphs. Some paragraphs has attribute left indentation set on. Everything work well. But next I create a PdfPTable with some cells (2 cells in 2 rows), add it into a Paragraph, and next I add this Paragraph with my Table into a Document. After I i

Re: [iText-questions] tables and repeating header rows on the next page

2006-06-16 Thread Adrian Maier
On 15/06/06, Adrian Maier <[EMAIL PROTECTED]> wrote: > On 15/06/06, bruno <[EMAIL PROTECTED]> wrote: > > Adrian Maier wrote: > > >I am generating a large table that can span across several pages. And > > >I'm looking for a solution to repeat the page header on each page. > > >The problem is that I'

Re: [iText-questions] tables and repeating header rows on the next page

2006-06-15 Thread Adrian Maier
On 15/06/06, bruno <[EMAIL PROTECTED]> wrote: > Adrian Maier wrote: > >I am generating a large table that can span across several pages. And > >I'm looking for a solution to repeat the page header on each page. > >The problem is that I'm not using PdfPTable ( which has a setHeaderRows > >method) b

Re: [iText-questions] tables and repeating header rows on the next page

2006-06-15 Thread bruno
Adrian Maier wrote: >Hello, > >I am generating a large table that can span across several pages. And >I'm looking for a solution to repeat the page header on each page. >The problem is that I'm not using PdfPTable ( which has a setHeaderRows >method) but the Table class. I need to generate eithe

[iText-questions] tables and repeating header rows on the next page

2006-06-15 Thread Adrian Maier
Hello, I am generating a large table that can span across several pages. And I'm looking for a solution to repeat the page header on each page. The problem is that I'm not using PdfPTable ( which has a setHeaderRows method) but the Table class. I need to generate either pdf or rtf . Does anyone

Re: [iText-questions] Tables and footers

2006-06-13 Thread bruno
Jeff Mogielnicki wrote: >1) Should I be using the Table object or use PDFpTable and writeSelectedRows()? > > It's better to use PdfPTable than Table in your case. You don't necessarily have to use writeSelectedRows. You can add a PdfPTable to a document the same way you add a Table. >2) Has thi

[iText-questions] Tables and footers

2006-06-12 Thread Jeff Mogielnicki
Hi, I have a report that has a header and footer on every page. The report displays multiple tables, of which a single table can span multiple pages. The table is created using the com.lowagie.text.Table object. The report was working fine under iText-0.90.jar. I recently upgraded to itext-1.4

Re: [iText-questions] Tables with SubTables generates empty rows

2006-03-14 Thread Paulo Soares
Table is not supported anymore, use a PdfPTable instead. - Original Message - From: "Dante Notari" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 15, 2006 5:34 AM Subject: [iText-questions] Tables with SubTables generates empty rows Hi, I have a table with a subtable

[iText-questions] Tables with SubTables generates empty rows

2006-03-14 Thread Dante Notari
Hi, I have a table with a subtable. The main table has only one row, however the Table.size() returns 21. For some reason it has generated many rows. There are a series of methods used (getTable, getDataCell, getLabelCell which return the Element with some formatting). I have other tables with sub

Re: [iText-questions] Tables and new pages

2006-01-18 Thread Bruno Lowagie
Please stay on the mailing list instead of replying to me personally.. [EMAIL PROTECTED] wrote: Bruno, Cheers for getting back to me, I changed to the PdfPTable and alot of the options were gone, but it sovled the issue. Is there anyway to set the cellpadding/defaultcellborder etc like in the

Re: [iText-questions] Tables and new pages

2006-01-17 Thread bruno
Gavin wrote: Hi all, I need some help sorting out a formatting issue when creating an pdf. Basically i'm creating a table, setting all the settings, then from a database going through each result and creating the cells to display the data. What I am doing is looping through the results, and

RE: [iText-questions] Tables and new pages

2006-01-17 Thread Paulo Soares
Use a PdfPTable. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Gavin > Sent: Tuesday, January 17, 2006 1:34 PM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Tables and new pages > > Hi

[iText-questions] Tables and new pages

2006-01-17 Thread Gavin
Hi all, I need some help sorting out a formatting issue when creating an pdf. Basically i'm creating a table, setting all the settings, then from a database going through each result and creating the cells to display the data. What I am doing is looping through the results, and each time adding

Re: [iText-questions] Tables and the border

2005-11-21 Thread bruno
Mark Babcock wrote: Why is it that when I print a table and I have the table border set to not show I always get a border when I print? Because the cell have borders too? br, Bruno --- This SF.Net email is sponsored by the JBoss Inc. Get

[iText-questions] Tables and the border

2005-11-21 Thread Mark Babcock
Why is it that when I print a table and I have the table border set to not show I always get a border when I print?

[iText-questions] tables and cells

2005-10-13 Thread S G
i'm generating a table that needs to be tightly formatted. i.e. fixed widths and text inside the cells have to fit. i'm using pdfptable 1. as i'm adding cells, can i find the height of the table so far? 2. if the text inside a cell does not fit - i need to make the font smaller on a per cell bas

Re: [iText-questions] Tables Question

2005-05-18 Thread Constantinos Sofianos
: Wednesday, May 18, 2005 7:49 AM To: Constantinos Sofianos Cc: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Tables Question The border on each side of a cell can be turned on or off using setBorder. Individual border sides can even be different widths or colors. All of the

RE: [iText-questions] Tables Question

2005-05-18 Thread Doug James
Sofianos Cc: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] Tables Question The border on each side of a cell can be turned on or off using setBorder. Individual border sides can even be different widths or colors. All of the border related methods for Cells and PdfPCells are in

Re: [iText-questions] Tables Question

2005-05-18 Thread Steve Appling
The border on each side of a cell can be turned on or off using setBorder. Individual border sides can even be different widths or colors. All of the border related methods for Cells and PdfPCells are in the base class Rectangle. Constantinos Sofianos wrote: Hi All, I am new to this list, bu

[iText-questions] Tables Question

2005-05-18 Thread Constantinos Sofianos
Hi All, I am new to this list, but would like to dive in with a new question regarding tables: Is it possible to omit only one portion of a cell border? For example I would like to have a table with 4 rows and two columns. I only want the outside border of each column to be visible. Is this p

Re: [iText-questions] tables in paragraphs + setKeepTogether

2005-03-23 Thread Paulo Soares
If you are talking about Table anything (wrong) can happen. - Original Message - From: "todwith1d" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 22, 2005 8:24 PM Subject: [iText-questions] tables in paragraphs + setKeepTogether > Hi All > > Is there i

[iText-questions] tables in paragraphs + setKeepTogether

2005-03-22 Thread todwith1d
Hi All Is there is an issue with tables in paragraphs disappearing with setKeepTogether = true? Has anyone else experienced this? Work arounds? Thanks TD --- This SF.net email is sponsored by: 2005 Windows Mobile Application Contest Submi

RE: [iText-questions] tables in tables

2004-11-10 Thread Paulo Soares
ntage(100);table.setExtendLastRow(false);cell.addElement(table);- Original Message - From: "John Sims" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>Sent: Tuesday, November 09, 2004 21:17Subject: Re: [iText-questions] tables in tables>

Re: [iText-questions] tables in tables

2004-11-10 Thread John Sims
endLastRow(false);cell.addElement(table);- Original Message - From: "John Sims" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>Sent: Tuesday, November 09, 2004 21:17Subject: Re: [iText-questions] tables in tables> I have a PdfPTable but can't find a

Re: [iText-questions] tables in tables

2004-11-09 Thread Paulo Soares
uesday, November 09, 2004 21:17 Subject: Re: [iText-questions] tables in tables > I have a PdfPTable but can't find a method to control row expansion (eg. > table.setRowExpansion(false);) > > Is there a method? > > thanks, > -john > > >>> "

Re: [iText-questions] tables in tables

2004-11-09 Thread John Sims
st row expansion.- Original Message - From: "John Sims" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Tuesday, November 09, 2004 20:23Subject: [iText-questions] tables in tables> I'm creating tables within tables. The top level table has three columns> (one co

Re: [iText-questions] tables in tables

2004-11-09 Thread Paulo Soares
You need a PdfPTable to be able to control the last row expansion. - Original Message - From: "John Sims" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 09, 2004 20:23 Subject: [iText-questions] tables in tables > I'm creating table

[iText-questions] tables in tables

2004-11-09 Thread John Sims
I'm creating tables within tables. The top level table has three columns (one column for each sub-table). The top level table only has one row (ie. one row of tables). Each of the three sub-tables has a different number of rows. The last row of the two smaller sub-tables (smaller in terms of the

Re: [iText-questions] Tables spanning multiple pages

2004-09-27 Thread Paulo Soares
Use a PdfPTable and the version at itextpdf.sf.net. Best Regards, Paulo Soares - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 27, 2004 19:02 Subject: [iText-questions] Tables spanning multiple pages > Hello. > > I ha

[iText-questions] Tables - unrecognised methods

2004-09-03 Thread William Garnett
Hello; I am using iText to produce tables in a PDF document. However, at compile time, I get 'unknown symbol' for the following: table.setBorderColor( new Color( r, g, b ) ); table.setHeader( true ); cell.setBackgroundColor( new Color( r, g, b ) ); and a few others These are used in the exa

[iText-questions] Tables with blank "empty space" cell at the base

2004-06-11 Thread Richard Christiansen
First of all, thanks for a wonderful product. Your classes provide a quick and reliable PDF solution for web applications - and that's not a small feat! I have a quick question about tables which refers to the example below: http://www.lowagie.com/iText/examples/Chap0512.pdf Although the cells

RE: [iText-questions] Tables side-by-side

2004-03-11 Thread Paulo Soares
oares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Ben Rometsch > Sent: Wednesday, March 10, 2004 11:17 AM > To: [EMAIL PROTECTED] > Subject: [iText-questions] Tables side-by-side > > Hi, > > Is it possible to have 2 t

[iText-questions] Tables side-by-side

2004-03-10 Thread Ben Rometsch
Hi, Is it possible to have 2 tables sit horizontally side by side? If I add 2 tables to a document, they always stack on top of each other, irrespective of width... Having a table with 1 row and 2 columns and then inserting a nested table into each cell is no use to me, as I need to be able to

[iText-questions] Tables...?

2004-01-27 Thread Bernard Herrok
Hi, When I write an item to a cell and the something later writes on the same cell, it clears the content of the cell. Is there a way to overwrite an existing value and formatting in a cell? Thanks     Bernard Herrok | Application Developer | Spotlight Stores P/L Ph +61 3 9684 7657

RE: [iText-questions] tables

2004-01-09 Thread Paulo Soares
Title: RE: [iText-questions] tables A picture would help. Are you using Table or PdfPTable? Best Regards, Paulo Soares -Original Message- From:   [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] On Behalf Of Turetsky, Seth Sent:   Friday, January 09, 2004 13:57 To: [EMAIL

[iText-questions] tables

2004-01-09 Thread Turetsky, Seth
How would I do this with nested tables(or is there another way): 3 columns across the document, all with a varying amount of subtables inside them. The problem is that the subtables always want to line up horizontally with the other subtables in the other columns, so there are gaps in between the

[iText-questions] tables

2004-01-09 Thread Turetsky, Seth
Don't think this post went through -Original Message- From: Turetsky, Seth Sent: Friday, January 09, 2004 8:57 AM To: [EMAIL PROTECTED] Subject: tables How would I do this with nested tables(or is there another way): 3 columns across the document, all with a varying amount of subtables

Re: [iText-questions] tables within a header

2003-07-28 Thread Paulo Soares
ent: Sunday, July 27, 2003 16:45 Subject: Re: [iText-questions] tables within a header > > > >From: "Paulo Soares" <[EMAIL PROTECTED]> > >To: "Rolando Cuevas" > ><[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> > >Subject: Re: [iText-q

Re: [iText-questions] tables within a header

2003-07-27 Thread Rolando Cuevas
From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Rolando Cuevas" <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> Subject: Re: [iText-questions] tables within a header Date: Wed, 23 Jul 2003 21:52:06 +0100 You don't need (and shouldn't use) fitsPag

Re: [iText-questions] tables within a header

2003-07-23 Thread Paulo Soares
> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 23, 2003 18:48 Subject: Re: [iText-questions] tables within a header > > > >From: Yuan Chang <[EMAIL PROTECTED]> > >Reply-To: [EMAIL PROTECTED] > >To: [EMAIL PROTECTED] > >Subject: [iText-questi

Re: [iText-questions] tables within a header

2003-07-23 Thread Rolando Cuevas
From: Yuan Chang <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [iText-questions] tables within a header Date: Wed, 23 Jul 2003 11:41:32 +0100 Could anyone give me an example of how i could have a table within the header on my pdf page? Included in this m

[iText-questions] tables within a header

2003-07-23 Thread Yuan Chang
Could anyone give me an example of how i could have a table within the header on my pdf page? I'm currently trying to use the HeaderFooter object to display a title, but i'm having difficulty in setting the vertical alignment of the text with in the rectangular border (how do you do this? There do

RE: [iText-questions] Tables

2003-06-26 Thread Paulo Soares
That only takes out the border from the table. You must also take out the border from each cell. Best Regards, Paulo Soares > -Original Message- > From: Sam Maina [SMTP:[EMAIL PROTECTED] > Sent: Thursday, June 26, 2003 15:05 > To: [EMAIL PROTECTED] > Subject: [

[iText-questions] Tables

2003-06-26 Thread Sam Maina
Title: Message Is it possible to create a Pdf Table without borders? I tried: Table table = new Table(2); table.setBorder(0);   I was hoping this would produce a table with no borders.

Re: [iText-questions] TABLES & CELL's...

2002-11-07 Thread Matías Salvador
MAIL PROTECTED]>; "iText List" <[EMAIL PROTECTED]> Sent: Thursday, November 07, 2002 5:39 PM Subject: Re: [iText-questions] TABLES & CELL's... > If you declare a Table with three columns, for > example, the first Cell you add will go to position > (1, 1). The se

Re: [iText-questions] TABLES & CELL's...

2002-11-07 Thread Matt Benson
nks! > > - Original Message - > From: "Matt Benson" <[EMAIL PROTECTED]> > To: "Matías_Salvador" > <[EMAIL PROTECTED]>; "iText List" > <[EMAIL PROTECTED]> > Sent: Thursday, November 07, 2002 5:15 PM > Subject: Re: [iText-

Re: [iText-questions] TABLES & CELL's...

2002-11-07 Thread Matías Salvador
ot; <[EMAIL PROTECTED]>; "iText List" <[EMAIL PROTECTED]> Sent: Thursday, November 07, 2002 5:15 PM Subject: Re: [iText-questions] TABLES & CELL's... > The easiest thing is to just use addCell(Cell). > addCell(Cell, Point) and addCell(Cell, int, int) a

Re: [iText-questions] TABLES & CELL's...

2002-11-07 Thread Matt Benson
The easiest thing is to just use addCell(Cell). addCell(Cell, Point) and addCell(Cell, int, int) are for adding a Cell at a particular column and row in the Table. -Matt --- Matías_Salvador <[EMAIL PROTECTED]> wrote: > When I use the addCell() method, it has two > parameters, the Cell and the lo

[iText-questions] TABLES & CELL's...

2002-11-07 Thread Matías Salvador
When I use the addCell() method, it has two parameters, the Cell and the location, that is a Point object. These coordinates, X and Y, in which unit are they? Because I'm having a:   "java.lang.IndexOutOfBoundsException: reserve - incorrect column/size" , and don't know what am I putting wro

RE: [iText-questions] tables in PDF

2002-10-01 Thread Paulo Soares
re it and then create the table. Best Regards, Paulo Soares > -Original Message- > From: Karthikeyan Ramnath [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, October 01, 2002 9:08 > To: [EMAIL PROTECTED] > Subject: [iText-questions] tables in PDF > > Hi all, > We

[iText-questions] tables in PDF

2002-10-01 Thread Karthikeyan Ramnath
Hi all, We presently have an application that displays a lot of data as Tables in Java. So we wanted to add a functionality to save it in PDF format, and hence I tripped on iText. The problem that I am facing is as follows. 1. Certain tables, not all, have 2 header rows. 2. How do I restrict th

Re: [iText-questions] Tables (both types) with PdfTemplate-based images

2002-08-13 Thread Paulo Soares
This modified code works for me using the iText version that is in the CVS. Best Regards, Paulo Soares - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 12, 2002 23:37 Subject: [iText-questions] Tables (both types) with PdfTemplate-

[iText-questions] Tables (both types) with PdfTemplate-based images

2002-08-12 Thread Ryan Johnston
I have been doing some testing, and have found some problems regarding PdfTemplate-based image support -- specifically within tables. 1. When I create a Table object with "new Table(1)", and add 5 cells to it, the application crashes due to an ArrayIndexOutOfBoundsException while the table con

Re: [iText-questions] Tables and Pages

2002-07-18 Thread Paulo Soares
Document.newPage() Best Regards, Paulo Soares - Original Message - From: "David Gold" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 18, 2002 21:10 Subject: [iText-questions] Tables and Pages > I am creating a document that contains four

Re: [iText-questions] Tables and Pages

2002-07-18 Thread Matt Benson
Document.newPage() ? -Matt --- David Gold <[EMAIL PROTECTED]> wrote: > I am creating a document that contains four tables. > The header of the > document is a PdfPTable consisting of 1 column and 1 > row. Immediately under > that is another 1 column, 1 row PdfPTable with > additional information

[iText-questions] Tables and Pages

2002-07-18 Thread David Gold
I am creating a document that contains four tables. The header of the document is a PdfPTable consisting of 1 column and 1 row. Immediately under that is another 1 column, 1 row PdfPTable with additional information. Next is the main PdfPTable consisting of a number of cells. Finally, there is ano

Re: [iText-questions] tables

2002-06-14 Thread Matt Benson
Yes, using PdfPTable... -Matt --- [EMAIL PROTECTED] wrote: > Hi all, > > is it possible to put 2 tables one on the left and > one on the right of the > page at the same height? > > Thx, > > A. > > > > ___ > > Don't miss the 2002

[iText-questions] tables

2002-06-14 Thread Aristo . Togliatti
Hi all, is it possible to put 2 tables one on the left and one on the right of the page at the same height? Thx, A. ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sp

Re: [iText-questions] Tables and positions

2002-05-29 Thread Bruno
Quoting pdf pdf <[EMAIL PROTECTED]>: > Hi! > I have two questions. > 1. Can i put a table inside a footer? If you are refering to the HeaderFooter object: this will not lead to a nice result. > if it is not posible. > 2. Can i put a table in absolute position? Yes, use PdfPTable and add it in

[iText-questions] Tables and positions

2002-05-29 Thread pdf pdf
Hi! I have two questions. 1. Can i put a table inside a footer? if it is not posible. 2. Can i put a table in absolute position? Thanks from Madrid. Antonio. _ Envíe y reciba su correo de Hotmail desde el móvil: http://mobile.msn.c

[iText-questions] Tables in Header

2002-02-20 Thread Pardey, Craig
Hi, I have been using the iText API for a while now and have been quite impressed with it. The only thing I need to be able to do is to include a table in the header or footer of a PDF document. It is mentioned in the headers and footers section of the tutorial, but the link (to chapter 12 I