suresh patidar wrote:
> Hello,
>
> sorry for my bad english.
>
> i want to write underlined text with PdfContentByte class.
> how can i do it.
Either you draw the line yourself with
moveTo(x1, y1);
lineTo(x2, y2);
stroke();
commands.
Or you use Chunk.setUnderline in combination with ColumnText.
Hello,
sorry for my bad english.
i want to write underlined text with PdfContentByte class.
how can i do it.
so please give some code for example.
--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new s
Hello,
How can I add underlined text at an absolute position ?
I've seen how to add italic, bold or bolditalic text at an absolute position,
by using the right TrueType font, like this:
BaseFont arialItalic = BaseFont.createFont("ariali.ttf", BaseFont.WINANSI,
BaseFont.EMBEDDED);
cb.setFontAndSiz
nday, February 24, 2003 12:35
> To: [EMAIL PROTECTED]
> Subject: [iText-questions] underlined Text
>
> Hi everyone,
>
> I have same problem when I try to wrtite underlined text on template.
> I set font style (ttf font like new Courier) as underline but on pdf
>
Hi everyone,
I have same problem when I try to wrtite underlined text on template.
I set font style (ttf font like new Courier) as underline but on pdf result the text is normal.
is it a itext bug ? or I wrong to write my code.
I need to write underlined text only on PdfTemplate
below you can