Re: [iText-questions] ColumnText and regular doc.add()

2014-07-04 Thread iText Info
Saurabh Mayekar schreef op 4/07/2014 15:26: > Can i achieve this kind of structure ? If yes how ? Yes, make sure you define the margins in such a way that they leave sufficient space for the header. > As the top section is header section how can i repeat only the header > section in all pages i

[iText-questions] ColumnText and regular doc.add()

2014-07-04 Thread Saurabh Mayekar
Hello , I have a doubt regarding how to use ColumnText and regular document.add() simultaneously at one page. I would like to describe my problem as follows. [image: Inline images 1] Consider the above image this is just one PDF page. As you can see there are two sections 1. Header Section

[iText-questions] ColumnText Leading Adding Space Above Initial Line

2012-11-30 Thread Andrew Miller
Okay so here's my problem. I have a ColumnText object that I'm adding text to. I'm using the simulate function to check if the text fits if it does I add it, If not I scale it down and try adding it again. //AddTextColumn is my helper function that abstracts the logic where iText is used to place

Re: [iText-questions] columnText verify table fits on current page

2011-03-08 Thread Mark Storer
nal Message- > From: Jason Berk [mailto:jb...@purdueefcu.com] > Sent: Tuesday, March 08, 2011 2:19 PM > To: Post all your questions about iText here > Subject: [iText-questions] columnText verify table fits on > current page > > Can someone show me how to use ColumnText to

[iText-questions] columnText verify table fits on current page

2011-03-08 Thread Jason Berk
Can someone show me how to use ColumnText to test if a table fits in the remaining space of a page? Will this give me different results then the much simpler: if(myTable.getTotalHeight() > writer.getVerticalPosition(true) - doc.bottomMargin()){ doc.newPage(); } wasn't sure if getTotalHeight() ac

[iText-questions] ColumnText text alignment

2010-11-10 Thread iText List
Hi, I'm using iTextSharp (5.0.4.0) in a C# forms application and I'm unable to center text in a ColumnText object. The ALIGN_CENTER option has no effect in the following code: Chunk headerText = new Chunk(priceGroup.PriceGroupDescription.ToUpper()); headerText.Fo

Re: [iText-questions] ColumnText: Access to the already added elements

2010-09-14 Thread Paulo Soares
AM To: Post all your questions about iText here Subject: Re: [iText-questions] ColumnText: Access to the already added elements On 13/09/2010 7:45, andreas wrote: > There must be an obvious reason why the > developers of iText didn't make a public getter for theses objects... If there

Re: [iText-questions] ColumnText: Access to the already added elements

2010-09-14 Thread 1T3XT info
On 13/09/2010 7:45, andreas wrote: > There must be an obvious reason why the > developers of iText didn't make a public getter for theses objects... If there is, I don't remember it. Should we make a getter for those elements? Maybe we can add: "use at your own risk" at first, and then if we get f

Re: [iText-questions] ColumnText: Access to the already added elements

2010-09-12 Thread andreas
Good morning, first, thank you for your response. what I basically need to do is to grab the remaining parts of the object in the ColumnText-container. I must have access to those elements because my business logic depents on the remaining content in the ColumnText-container. In the meantime, I

Re: [iText-questions] ColumnText: Access to the already added elements

2010-09-11 Thread 1T3XT info
On 10/09/2010 9:39, andreas wrote: > > Hi, > > are there any possibilities to access the already added elements in a > ColumnText? In my case, I need to grab the content from a PdfPTable, which > is embedded in the ColumnText-container, each time the page breaks. I added > the PdfPTable with the me

[iText-questions] ColumnText: Access to the already added elements

2010-09-10 Thread andreas
Hi, are there any possibilities to access the already added elements in a ColumnText? In my case, I need to grab the content from a PdfPTable, which is embedded in the ColumnText-container, each time the page breaks. I added the PdfPTable with the method addElement(Element e). Is there a method l

Re: [iText-questions] ColumnText

2010-07-15 Thread Peter Forstmeier
2010 08:45 An: Post all your questions about iText here Betreff: Re: [iText-questions] ColumnText Peter Forstmeier wrote: > Hi List, > i would like to add some variable length Text at a give location and a given > Height and Width: > > PdfContentByte cb = base.PdfWrite

Re: [iText-questions] ColumnText

2010-07-14 Thread Peter Forstmeier
ilto:i...@1t3xt.info] > Gesendet: Mittwoch, 14. Juli 2010 08:45 > An: Post all your questions about iText here > Betreff: Re: [iText-questions] ColumnText > > Peter Forstmeier wrote: > > Hi List, > > i would like to add some variable length Text at a give location a

Re: [iText-questions] ColumnText

2010-07-13 Thread 1T3XT info
Peter Forstmeier wrote: > Hi List, > i would like to add some variable length Text at a give location and a given > Height and Width: > > PdfContentByte cb = base.PdfWriter.DirectContent; > > iTextSharp.text.Rectangle r = base.ConvertToPdfRectangle(); > > ColumnText ct = new ColumnText(cb); > >

[iText-questions] ColumnText

2010-07-13 Thread Peter Forstmeier
Hi List, i would like to add some variable length Text at a give location and a given Height and Width: PdfContentByte cb = base.PdfWriter.DirectContent; iTextSharp.text.Rectangle r = base.ConvertToPdfRectangle(); ColumnText ct = new ColumnText(cb); PdfFormat pdfFormat = new PdfFormat(this.Styl

[iText-questions] ColumnText

2010-07-13 Thread Peter Forstmeier
Hi List, i would like to add some variable length Text at a give location and a given Height and Width: PdfContentByte cb = base.PdfWriter.DirectContent; iTextSharp.text.Rectangle r = base.ConvertToPdfRectangle(); ColumnText ct = new ColumnText(cb); PdfFormat pdfFormat = new PdfFormat(this.Styl

[iText-questions] ColumnText clipping at top

2010-06-11 Thread Thomas Hauk
If I run the following code, the text flowed from the ColumnText object gets clipped at the very top, when I later add the PdfTemplate created here to a PdfWriter: float templateWidth = 153.0f; float templateHeight = 255.0f; PdfContentByte content = writer.getDirectCon

Re: [iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-29 Thread pickm
That fixes it. Thanks! I got widthPercentage (the table) confused with widthPercentages (the columns)... I assumed they were the same thing. -- View this message in context: http://old.nabble.com/ColumnText-setSimpleColumn-with-getFieldPositions%28%29-tp28042812p28069575.html Sent from the i

Re: [iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-28 Thread 1T3XT info
pickm wrote: > What I did that caused my original question was to add a PdfPTable to > the columnText. The PdfPTable had margins on both sides. The width percentage is 80% by default. You need to change it to 100%. > So... we have eliminated my suggestion that the coordinate positions are > the

Re: [iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-27 Thread pickm
No, I did not write a rectangle to test my original assertion. I have now gone back and I drew a rectangle. It appears to be correct. Here is the test code i used: PdfContentByte c = stamper.getOverContent(1); Rectangle r = new Rectangle(fieldPositionsStatement

Re: [iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-27 Thread 1T3XT info
pickm wrote: > So my problem is that when i call |setSimpleColumn|, I need to expand > the column text with arbitrary values for some reason. How do you know this? Did you draw a rectangle using the coordinates returned by getFieldPositions? Does it appear at the correct place? -- This answer i

[iText-questions] ColumnText setSimpleColumn with getFieldPositions()

2010-03-26 Thread pickm
I am having an issue where I am stamping a PDF template. Here is my setup: I have a PdfStamper and a template with a bunch of form fields on it. I am using some of the form fields as placeholders for PdfPTables that I create in java. So I get my place holder dimensions like this: float []

Re: [iText-questions] columntext object / composite mode

2009-12-21 Thread ennidhi
"bold line" problem was a real one and I got good responses for it and If someone asks me why the line is bold, I can answer them because of the forum. I repeatedly enquired about it b'coz I want to be very sure. Even I tried the tool ""PDFXCview" mentioned by some friend in that thread. iText is

Re: [iText-questions] columntext object / composite mode

2009-12-21 Thread 1T3XT info
ennidhi wrote: > Ok Mr..U seems to be short tempered person... Look, the mailing list is for real problems. People spend free time on answering real questions. That time is precious, please don't waste it. You've been sending many emails about a problem that wasn't real (the "bold line" problem).

Re: [iText-questions] columntext object / composite mode

2009-12-21 Thread ennidhi
Ok Mr..U seems to be short tempered person... 1T3XT info wrote: > > ennidhi wrote: >> I am developing a pdf with mutiple pages. Whenever i use ct.addelement.. >> method in the first page, I could not able to print anything using >> cb(pdfcontent byte) or ct.addtext after doing document.newPa

Re: [iText-questions] columntext object / composite mode

2009-12-21 Thread 1T3XT info
ennidhi wrote: > I am developing a pdf with mutiple pages. Whenever i use ct.addelement.. > method in the first page, I could not able to print anything using > cb(pdfcontent byte) or ct.addtext after doing document.newPage... i.e. in > the new page. Read the documentation! You've forgotten to re

[iText-questions] columntext object / composite mode

2009-12-21 Thread ennidhi
I am developing a pdf with mutiple pages. Whenever i use ct.addelement.. method in the first page, I could not able to print anything using cb(pdfcontent byte) or ct.addtext after doing document.newPage... i.e. in the new page. But document.add is working. It seems composite mode does not work for

Re: [iText-questions] ColumnText

2009-08-05 Thread 1T3XT info
Christian wrote: > > Hi Hi, you are using the wrong e-mail address. You should use itext-questions@lists.sourceforge.net > How can I insert a ColumnText object into a Paragraph with iText libraries? The question is wrong too. You can add paragraphs to columns, but it doesn't make sense to add

Re: [iText-questions] ColumnText Grouping/KeepTogether

2009-02-01 Thread ApolloX
Thanks, although more detail than "read that book" would have been appreciated. Besides, the solution of using a nested table with the outer table disabling works just fine. I just find the syntax a little ugly. It would be nice if grouping was natively supported for elements of ColumnText. --

Re: [iText-questions] ColumnText Grouping/KeepTogether

2009-02-01 Thread mister bean
This problem and its solution are discussed in detail in Chapter 7 of the iText book. ( http://is.gd/7Wib ) ---mr. bean ApolloX wrote: > > As a follow-up, I initially tried using Paragraph.setKeepTogether(true) > which worked for single-paragraphs with the same alignment, but did not > work if

Re: [iText-questions] ColumnText Grouping/KeepTogether

2009-02-01 Thread ApolloX
As a follow-up, I initially tried using Paragraph.setKeepTogether(true) which worked for single-paragraphs with the same alignment, but did not work if I had a set of elements with different paragraphs and/or alignments. The solution that worked the best was to add a single outer table, set PdfPT

[iText-questions] ColumnText Grouping/KeepTogether

2009-02-01 Thread ApolloX
Is there a way to prevent elements in an iText column from being split across multiple columns? For example, Paragraph has http://www.1t3xt.info/api/com/lowagie/text/Paragraph.html#keeptogether keeptogether attribute which prevents text within a paragraph from being split across two pages. Is

Re: [iText-questions] ColumnText to Swing conversion

2007-08-23 Thread Paulo Soares
D]> To: Sent: Thursday, August 23, 2007 4:59 AM Subject: [iText-questions] ColumnText to Swing conversion > > I have code that generates a pdf file which contains a ColumnText object. > The > text that is used for this pdf file is obtained from an applet. The > ColumnText objec

[iText-questions] ColumnText to Swing conversion

2007-08-23 Thread david allen
I have code that generates a pdf file which contains a ColumnText object. The text that is used for this pdf file is obtained from an applet. The ColumnText object is of a fixed size and I need to ensure that the text sent to the server fits perfectly within the ColumnText object. I need to make

Re: [iText-questions] ColumnText andvanced Border

2007-03-12 Thread Paulo Soares
It is possible if you draw the shadow. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of duschhaube > Sent: Monday, March 12, 2007 11:40 AM > To: itext-mailinglist > Subject: [iText-questions] ColumnText andvanced Bord

[iText-questions] ColumnText andvanced Border

2007-03-12 Thread duschhaube
Hello, I use ColumenText to place a textbox to a specific possition on the page. Is it possible to draw a border with shadow arround this box? In dem Column example I saw how to draw the border by simple draw a rectangle arround the box. But is there a otherway for doing this. So I can add shad

Re: [iText-questions] ColumnText question

2007-01-10 Thread Bruno Lowagie
net2tech wrote: > How do I determine this size on the fly? I have the llx, lly, urx and ury > info, but how do I know when the text is truncated or when its being > wrapped? You say you are reading the book; have a look at p200-201. There you'll find a method to know if there's more text than you

Re: [iText-questions] ColumnText question

2007-01-10 Thread net2tech
net2tech wrote: > This works fine most of the time, but sometimes the text in the columntext > appears in the next line. I am assuming its being wrapped. How can I > explicitly tell ColumnText not to wrap text? Reduce the height of the rectangle defined with llx, lly, urx and ury and the text w

Re: [iText-questions] ColumnText question

2007-01-09 Thread Bruno Lowagie (iText)
net2tech wrote: > This works fine most of the time, but sometimes the text in the columntext > appears in the next line. I am assuming its being wrapped. How can I > explicitly tell ColumnText not to wrap text? Reduce the height of the rectangle defined with llx, lly, urx and ury and the text wil

[iText-questions] ColumnText question

2007-01-08 Thread net2tech
Hello, I am writing some text at specific coordinates using ColumnText. Here is the snippet of the code ... ... ColumnText ct = new ColumnText(under); ct.SetSimpleColumn(llx, lly, urx, ury, 0f, Element.ALIGN_RIGHT); ct.SpaceCharRatio = PdfWriter.NO_SPACE_CHAR_RATIO; //Don't know

Re: [iText-questions] ColumnText and allignment

2006-12-27 Thread Martin Spek
iText-questions] ColumnText and allignment Martin Spek wrote: > For example if they want to cut the name of a street or a town by means > of a hyphen: > 'uitvaartcentrum Huppeldepup aan de Keizers- > gracht 234 te Amsterdam' > Or > 'uitvaartcentrum Huppeldepup, Ookmeerw

Re: [iText-questions] ColumnText and allignment

2006-12-27 Thread Bruno Lowagie
Martin Spek wrote: > For example if they want to cut the name of a street or a town by means > of a hyphen: > 'uitvaartcentrum Huppeldepup aan de Keizers- > gracht 234 te Amsterdam' > Or > 'uitvaartcentrum Huppeldepup, Ookmeerweg 234, Am- > sterdam' Amsterdam will only be hyphenated if you turn on

Re: [iText-questions] ColumnText and allignment

2006-12-27 Thread Martin Spek
den: woensdag 27 december 2006 10:04 Aan: Post all your questions about iText here Onderwerp: Re: [iText-questions] ColumnText and allignment Martin Spek wrote: > However I wonder if there is a more simple solution. I would solve this by using non-breaking space characters for the date

Re: [iText-questions] ColumnText and allignment

2006-12-27 Thread Bruno Lowagie
Martin Spek wrote: > However I wonder if there is a more simple solution. I would solve this by using non-breaking space characters for the date, like this: "maandag\u00a09\u0a00oktober". If this complete date fits on the first line: fine! In most cases however, it won't fit. The complete date Str

[iText-questions] ColumnText and allignment

2006-12-27 Thread Martin Spek
Dear all We are using iText for composing advertisements from data coming from a database. The various parts of the advertisements are implemented by means of ColumnText objects. All these objects may have different forms of allignments as you can see in Voorbeeld_1.pdf. My questions concerns t

Re: [iText-questions] ColumnText and large table header

2006-11-30 Thread Bruno Lowagie (iText)
[EMAIL PROTECTED] wrote: > I have used and adapted the onEndPAge() example and everything works > nicely. I have tried adding a a big fat table as my header and it doesn't > display right, it seems like it is reacting to my margins that I have set > for the ColumnText but when I change them it exh

[iText-questions] ColumnText and large table header

2006-11-29 Thread seanka
I have used and adapted the onEndPAge() example and everything works nicely. I have tried adding a a big fat table as my header and it doesn't display right, it seems like it is reacting to my margins that I have set for the ColumnText but when I change them it exhibits the same behavior. Here is

Re: [iText-questions] ColumnText pagination

2006-11-21 Thread Bruno Lowagie (iText)
Campa wrote: > I think its better if i'm going to study the definition and the examples > of PdfTemplate, maybe its the right thing i need. Please study this example: http://itext.ugent.be/itext-in-action/examples/chapter06/PdfPTableRepeatHeaderFooter.java http://itext.ugent.be/itext-in-action/ex

Re: [iText-questions] ColumnText pagination

2006-11-21 Thread Campa
I think its better if i'm going to study the definition and the examples of PdfTemplate, maybe its the right thing i need. Thank you for your time (and patience :) ) Bruno. And sorry again for my bad english it doesn't give me the chance to let you understand my question. Bye, Campa 2006/11/21,

Re: [iText-questions] ColumnText positioning problem

2006-10-10 Thread Paulo Soares
I've no idea how FOP calculates things. To avoid word wrapping make the width wider but I'm sure you've already thought about that. Paulo - Original Message - From: "Katrin Paulus" <[EMAIL PROTECTED]> To: Sent: Tuesday, October 10, 2006 5:49 PM Subjec

[iText-questions] ColumnText positioning problem

2006-10-10 Thread Katrin Paulus
Hi,   I am currently converting the generation of PDF-documents from Apache FOP to iText (out of performance matters).   Every element, which should be embedded into the document, has an explicit position. For the positioning I am using the class “ColumnText” from the package com.lowagie.text

Re: [iText-questions] ColumnText

2006-07-28 Thread porcupine
ColumnText.showTextAligned is a static method that outputs the first line of text to your PdfContentByte (eg writer) You may wish to think about instantiating ColumnText and adding a Chunk or Phrase, which it will text wrap as necessary (in C#): ColumnText ct = new ColumnText(writer); ct.SetSimple

[iText-questions] ColumnText

2006-07-28 Thread mayangui armand
Hi, how to make to put out a several lines text with ColumnText.showTextAligned. - 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

Re: [iText-questions] ColumnText#go(true) bug

2006-06-20 Thread Paulo Soares
> Subject: [iText-questions] ColumnText#go(true) bug > > Is is possible the ColumnText#go(true) has a tiny bug? I have a > multi-line phrase that I need to simulate prior to printing > to make sure > it won't go off the page. Unfortunately, ColumnText#go(true) still > out

[iText-questions] ColumnText#go(true) bug

2006-06-20 Thread Steven Buschman
Is is possible the ColumnText#go(true) has a tiny bug? I have a multi-line phrase that I need to simulate prior to printing to make sure it won't go off the page. Unfortunately, ColumnText#go(true) still outputs a few lines. I looked at the source for 1.4.1 ColumnText.java (v1.68) and it looks

Re: [iText-questions] ColumnText

2005-10-04 Thread bruno
j r wrote: could someone please teach a noob, how to use ColumnText in a servlet? and if this is not Possible what is the alternative? Thanks. http://itextdocs.lowagie.com/tutorial/objects/columns/ http://itextdocs.lowagie.com/tutorial/general/webapp/ Everything that works in a standalone exa

[iText-questions] ColumnText

2005-10-04 Thread j r
could someone please teach a noob, how to use ColumnText in a servlet? and if this is not Possible what is the alternative? Thanks. __ Yahoo! Mail - PC Magazine Editors' Choice 2005 http://mail.yahoo.com

[iText-questions] ColumnText and labeled objects

2005-06-14 Thread Andreas Meyer
Hi all, I am looking for an elegant way to place and label objects like a "roundRectangle" using ColumnText. My current solution is to use a scaled transparent 1x1 gif (provided with setGenericTag) as placeholder and draw/label my objects, after the exact position is determined. Snippet1: ... Im

RE: [iText-questions] ColumnText with register

2005-02-03 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Thomas Kübler > Sent: Thursday, February 03, 2005 11:42 AM > To: iText-questions@lists.sourceforge.net > Subject: [iText-questions] ColumnText with register > > hal

[iText-questions] ColumnText with register

2005-02-03 Thread Thomas Kübler
hallo, i wan't to det a register for a three columText with different Fonts. how can i set a start point in every column for the text? next. i will for every paragraph a different leading or align. at this time this only works, when i set these parameters to the column and select the go method. the

RE: [iText-questions] ColumnText with irregular columns

2005-01-14 Thread Paulo Soares
> Subject: [iText-questions] ColumnText with irregular columns > > I'm using a ColumnText with irregular column shapes. If I try to add > paragraphs to it, I get an exception telling me that I can't use > irregular column shapes in "composite" mode. I gat

[iText-questions] ColumnText with irregular columns

2005-01-13 Thread John Gregory
I'm using a ColumnText with irregular column shapes. If I try to add paragraphs to it, I get an exception telling me that I can't use irregular column shapes in "composite" mode. I gather that this means that I need to add text to the ColumnText using Phrases. Right so far? So, now I'd like to

Re: [iText-questions] ColumnText within a Cell

2005-01-12 Thread Paulo Soares
Create your cells with a fixed height and use a PdfPCellEvent to put the ColumnText inside. - Original Message - From: "John Gregory" <[EMAIL PROTECTED]> To: Sent: Wednesday, January 12, 2005 7:51 PM Subject: [iText-questions] ColumnText within a Cell > I'm c

[iText-questions] ColumnText within a Cell

2005-01-12 Thread John Gregory
I'm creating a calendar using iText, and so I'd like to create a table where each cell contains the date in the upper right corner, and then a listing of events on that date, aligned in the upper left corner, text-wrapping around the date. It seems like I could do this if I could nest a ColumnT

RE: [iText-questions] ColumnText and Paragraphs ...

2004-12-17 Thread Paulo Soares
> Sent: Friday, December 17, 2004 8:58 AM > To: Paulo Soares > Cc: itext-questions > Subject: Re: [iText-questions] ColumnText and Paragraphs ... > > Paulo Soares schrieb: > > A complete example, please. > > See attachment for it. If you run it, notice the 5 li

Re: [iText-questions] ColumnText and Paragraphs ...

2004-12-17 Thread Bruno
Quoting Michael Glauche <[EMAIL PROTECTED]>: > Btw .. if you could use some more ColumnText examples for documentation > purposes, let me know :) Extra examples are always valuable to put in the new tutorial 'iText by example': http://itext.sourceforge.net/tutorial/ (Allthough I can tell you in

Re: [iText-questions] ColumnText and Paragraphs ...

2004-12-17 Thread Michael Glauche
Paulo Soares schrieb: A complete example, please. See attachment for it. If you run it, notice the 5 lines on the left box are repeated on the right side ! Btw .. if you could use some more ColumnText examples for documentation purposes, let me know :) regards, Michael import java.io.Fi

RE: [iText-questions] ColumnText and Paragraphs ...

2004-12-16 Thread Paulo Soares
A complete example, please. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Michael Glauche > Sent: Thursday, December 16, 2004 3:10 PM > To: itext-questions > Subject: [iText-questions] ColumnText and Paragraphs ...

[iText-questions] ColumnText and Paragraphs ...

2004-12-16 Thread Michael Glauche
Hi, I found another problem with ColumnText and the composite mode: When i set the Paragraph.setKeepTogether(true) attribute of some paragraphs and add them to a 2 row Columntext, the paragraph where the split is is correctly moved to the 2nd column. But the "rest" of it is still on the first

RE: [iText-questions] ColumnText doesn't fit the current page

2004-12-06 Thread Paulo Soares
See the return of go(). > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of amine > Sent: Monday, December 06, 2004 1:49 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] ColumnText doesn't fit the current page >

[iText-questions] ColumnText doesn't fit the current page

2004-12-06 Thread amine
Hi, How can I check if ColumnText will fit one page or not? Thanks Amine --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the h

RE: [iText-questions] ColumnText bug?

2004-11-23 Thread Paulo Soares
[EMAIL PROTECTED]Subject: [iText-questions] ColumnText bug? Expected Results: Header line of the table to be displayed   Actual Results: When I created a PdfTable with a header and no content, nothing displayed   Code version: iText 1.1 Class: ColumnText Method:

[iText-questions] ColumnText bug?

2004-11-22 Thread Cary Sweet
Title: Message Expected Results: Header line of the table to be displayed   Actual Results: When I created a PdfTable with a header and no content, nothing displayed   Code version: iText 1.1 Class: ColumnText Method: goComposite(boolean simulate) Line: 1179       if (table.si

[iText-questions] ColumnText

2004-11-16 Thread Merlyn Mathias
Hi Paulo,   Is there anyway I can get the leftover text from columntext after calling go? I do not want to call go again if there is no more column. I need a String representation of the remaining text. Something like this:   ColumnText text = new ColumnText(stamper.getOverContent(1)); text.addText

RE: [iText-questions] ColumnText

2004-11-16 Thread Paulo Soares
You can't get the text out the ColumnText. From: Merlyn Mathias [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 16, 2004 4:01 PMTo: Paulo Soares; [EMAIL PROTECTED]Subject: [iText-questions] ColumnText Hi Paulo,   Is there anyway I can get the leftover text

Re: [iText-questions] ColumnText support for addElement(Phrase)

2004-11-06 Thread Paulo Soares
This was discussed recently. Phrase doesn't have enough information like alignment and spacing. - Original Message - From: "Steve Appling" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 05, 2004 14:35 Subject: [iText-questions] ColumnText su

[iText-questions] ColumnText support for addElement(Phrase)

2004-11-05 Thread Steve Appling
Is there a reason that addElement in ColumnText (and by extension PdfPCell) couldn't support adding a Phrase directly? Right now it throws IllegalArgumentException if you add a Phrase directly that isn't wrapped in a Paragraph. --- This SF.

RE: [iText-questions] ColumnText phrase height

2004-10-25 Thread Paulo Soares
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Vijay Karthik > Sent: Sunday, October 24, 2004 5:44 PM > To: [EMAIL PROTECTED] > Subject: [iText-questions] ColumnText phrase height > > All > > How do i find

[iText-questions] ColumnText phrase height

2004-10-24 Thread Vijay Karthik
All How do i find the height of a chunk/phrase in a columnText? Also Once i add phrases or chunks to a columnText, Is there a way to get them back? I have a columnText with say 10 phrases and the leading between each phrase is set to 8. How do i go back and change the leading between those phrase

[iText-questions] ColumnText phrase

2004-10-22 Thread Vijay Karthik
All How do i find the height of a chunk/phrase in a columnText? Also Once i add phrases or chunks to a columnText, Is there a way to get them back? I have a columnText with say 10 phrases and the leading between each phrase is set to 8. How do i go back and change the leading between those phrase

Re: [iText-questions] ColumnText

2004-10-13 Thread Paulo Soares
sday, October 12, 2004 17:25 Subject: [iText-questions] ColumnText > Hi Paulo, > > I am here with another question. > > I have a fixed size form which is populated using pdfstamper. I use the > following code : > > ColumnText text = new ColumnText(stamper.getOverCo

[iText-questions] ColumnText

2004-10-12 Thread Merlyn Mathias
Hi Paulo, I am here with another question. I have a fixed size form which is populated using pdfstamper. I use the following code : ColumnText text = new ColumnText(stamper.getOverContent(1)); text.addText(new Phrase(value, FontFactory.getFont (FontFactory.COURIER, 12, Font.NORMAL))

[iText-questions] ColumnText

2004-10-07 Thread Merlyn Mathias
Hi Paulo,   I have a fixed size PDF form and I use PDFStamper to populate the fields. The document has 15 pages. There are couple of fields which span multiple pages. In the PDF I have named the fields as name.1, name.2, name.3 etc. If the contents should continue from name.1 to name.2 and name.3.

Re: [iText-questions] ColumnText

2004-09-26 Thread Paulo Soares
Whatever you do you fitsPage() is ok with me. Best Regards, Paulo Soares - Original Message - From: "Christian Lauer" <[EMAIL PROTECTED]> To: "iText Mailing List" <[EMAIL PROTECTED]> Sent: Sunday, September 26, 2004 11:31 Subject: [Fwd: Re: [iText-que

Re: [Fwd: Re: [iText-questions] ColumnText]

2004-09-26 Thread Christian Lauer
return table.getTotalHeight() + 0.001f <= indentTop() - > > currentHeight - indentBottom() - margin; > > } > > > > Best Regards, > > Paulo Soares > > > > - Original Message - > > From: "Christian Lauer" <[EMAI

[Fwd: Re: [iText-questions] ColumnText]

2004-09-26 Thread Christian Lauer
quot;Christian Lauer" <[EMAIL PROTECTED]> > To: "Paulo Soares" <[EMAIL PROTECTED]> > Cc: "iText Mailing List" <[EMAIL PROTECTED]> > Sent: Saturday, September 25, 2004 10:34 > Subject: RE: [iText-questions] ColumnText > > > > Hi

Re: [iText-questions] ColumnText

2004-09-26 Thread Christian Lauer
quot;Christian Lauer" <[EMAIL PROTECTED]> > To: "Paulo Soares" <[EMAIL PROTECTED]> > Cc: "iText Mailing List" <[EMAIL PROTECTED]> > Sent: Saturday, September 25, 2004 10:34 > Subject: RE: [iText-questions] ColumnText > > > > Hi

Re: [iText-questions] ColumnText

2004-09-25 Thread Paulo Soares
r" <[EMAIL PROTECTED]> To: "Paulo Soares" <[EMAIL PROTECTED]> Cc: "iText Mailing List" <[EMAIL PROTECTED]> Sent: Saturday, September 25, 2004 13:56 Subject: Re: [iText-questions] ColumnText > Hi Paulo, > > i've played a little with your patch and

Re: [iText-questions] ColumnText

2004-09-25 Thread Christian Lauer
ulo Soares > > - Original Message - > From: "Christian Lauer" <[EMAIL PROTECTED]> > To: "Paulo Soares" <[EMAIL PROTECTED]> > Cc: "iText Mailing List" <[EMAIL PROTECTED]> > Sent: Saturday, September 25, 2004 10:34 > S

Re: [iText-questions] ColumnText

2004-09-25 Thread Paulo Soares
res - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "Christian Lauer" <[EMAIL PROTECTED]> Cc: "iText Mailing List" <[EMAIL PROTECTED]> Sent: Saturday, September 25, 2004 12:10 Subject: Re: [iText-questions] ColumnText > That wo

Re: [iText-questions] ColumnText

2004-09-25 Thread Paulo Soares
D]> To: "Paulo Soares" <[EMAIL PROTECTED]> Cc: "iText Mailing List" <[EMAIL PROTECTED]> Sent: Saturday, September 25, 2004 10:34 Subject: RE: [iText-questions] ColumnText > Hi Paulo, > > I've extended PdfWriter and PdfDocument to make my solution

RE: [iText-questions] ColumnText

2004-09-25 Thread Christian Lauer
Steve Appling > > Sent: Wednesday, September 22, 2004 12:15 PM > > To: Christian Lauer; iText Mailing List > > Subject: Re: [iText-questions] ColumnText > > > > Do you think ColumnText should implement Element? Then you > > could add a form > > of set

RE: [iText-questions] ColumnText

2004-09-22 Thread Paulo Soares
To: Paulo Soares; Christian Lauer; iText Mailing List > Subject: Re: [iText-questions] ColumnText > > I still think it would be useful to add the ability to > specify a width on > the ColumnText object before it is added to the document (or > perhaps there > is someway

Re: [iText-questions] ColumnText

2004-09-22 Thread Steve Appling
dents). > - Original Message - > From: "Paulo Soares" <[EMAIL PROTECTED]> > To: "Steve Appling" <[EMAIL PROTECTED]>; "Christian Lauer" <[EMAIL PROTECTED]>; "iText Mailing List" <[EMAIL PROTECTED]> > Sent: Wednesday,

RE: [iText-questions] ColumnText

2004-09-22 Thread Paulo Soares
List > Subject: Re: [iText-questions] ColumnText > > Do you think ColumnText should implement Element? Then you > could add a form > of setSimpleColumn that only sets height and width and the add call in > PdfDocument could adjust for horizontal alignment and call > t

Re: [iText-questions] ColumnText

2004-09-22 Thread Steve Appling
). - Original Message - From: "Christian Lauer" <[EMAIL PROTECTED]> To: "iText Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, September 22, 2004 2:44 AM Subject: [iText-questions] ColumnText > Hi Paulo, > > I'd like to enhance the support

RE: [iText-questions] ColumnText

2004-09-22 Thread Paulo Soares
As an extension to Element. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Mark Hall > Sent: Wednesday, September 22, 2004 11:37 AM > To: [EMAIL PROTECTED] > Subject: Re: [iText-question

Re: [iText-questions] ColumnText

2004-09-22 Thread Mark Hall
On Wednesday 22 September 2004 12:27, Paulo Soares wrote: > Maybe ColumnText could be made an Element and be added to the Document. As an extension of something that is already an Element or directly under Element? Greetings, Mark --- This SF.

RE: [iText-questions] ColumnText

2004-09-22 Thread Paulo Soares
ing List > Subject: [iText-questions] ColumnText > > Hi Paulo, > > I'd like to enhance the support of ColumnText in UJAC. For > that I'd like > to add a column text seamlessly to the document like other > elements like > tables, paragraphs or lists do. To make

[iText-questions] ColumnText

2004-09-21 Thread Christian Lauer
Hi Paulo, I'd like to enhance the support of ColumnText in UJAC. For that I'd like to add a column text seamlessly to the document like other elements like tables, paragraphs or lists do. To make that happen I need to know the current page position. To get this, I tried the following workaround, w

  1   2   >