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);
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
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
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
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