[iText-questions] Re: Re: Get the actual x,y in page

2005-04-03 Thread Marco
This seems ok: public class pdf implements costanti.globali { private int dimensionecaratteri; private void aggiungeFrase(Phrase unaRiga) throws DocumentException { Chunk chunk=new Chunk(System.getProperty("line.separator")); Phrase aCapo0=new Phrase((float) (dimensionecaratteri))

RE: [iText-questions] Re: Re: Get the actual x,y in page

2005-04-02 Thread Paulo Soares
ril 01, 2005 11:59 AM > To: itext-questions@lists.sourceforge.net > Subject: [iText-questions] Re: Re: Get the actual x,y in page > > I can't use Paragraph, because my equations have high and low > part; when I > go to a new line, I must leave a space=previous low+actual

[iText-questions] Re: Re: Get the actual x,y in page

2005-04-02 Thread Marco
I can't use Paragraph, because my equations have high and low part; when I go to a new line, I must leave a space=previous low+actual high: I can go to a new line only after the next is defined. But this is not a great problem, because I can add Pharagraph to Document after define the next. My