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
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
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
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
Hi List,
i have a long text (variable). This text should be printed inside a given
Rectangle. If the text dosn't fit inside the rectangle the text should be
formatted with StringTrimming or just cut.
Until now i use this code:
PdfContentByte contentByte = base.PdfWriter.DirectContent;
iTextSha