[iText-questions] Re: iText-questions digest, Vol 1 #487 - 4 msgs

2002-04-11 Thread mbhat
Hello, You may try the following, this will put the text in 2 diffrent font sizes in a cell, I am not sure of positioning in a cell. regards, Manu. Cell cell = new Cell(new Phrase("text",getFontAttribute())); cell.add(new Phrase("text2",getFontAttribute())); table.add(cell);

[iText-questions] How to send the Pdf content to the browser

2002-04-10 Thread mbhat
Hello, I would like to send the PDF/RTF/HTML contents to the browser. client invocationof a jsp page should send the PDF/HTML/RTF output to the browser and the client should be in a position to save this output in his/her local machine. can you please guide me in achieving the above. With Re

Re: [iText-questions] Table offset

2002-04-08 Thread mbhat
Hello Mark, Thanks for the workaround/suggestion, it works for RtfWriter. Html Writer puts no blank lines for the following command. document.add(new Paragraph("")); With Thanks and Regrds Manu

[iText-questions] Table offset

2002-04-08 Thread mbhat
Hello, The table offset(table.setOffset) does not work with RtfWriter and HtmlWriter. Any other way of setting the blank lines in between the tables? With Regards, Manu ___ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net

[iText-questions] Rtfwriter problem while adding a table.

2002-03-25 Thread mbhat
I have a problem while adding a table into a RTF doc. This happens while document.add(table) in RtfWriter.getInstance(document, new FileOutputStream("MyFileName.rtf") The number of cells inserted are less than total number of cells in the table. (Total number of Cell/No of Column)? The fo