Re: [iText-questions] add Table object to PdfContentByte

2009-12-13 Thread 1T3XT info
Lee Marshall wrote: > Would the documentation url for PdfPTable be the following? > http://api.itextpdf.com/com/itextpdf/text/pdf/PdfPTable.html No, that would be chapter 6 of "iText in Action" 1st Edition, or chapter 4 of "iText in Action" 2nd Edition. http://itextpdf.com/book/ -- This answer is

Re: [iText-questions] add Table object to PdfContentByte

2009-12-13 Thread Lee Marshall
1T3XT BVBA, First off, your quick replies is great just to confirm that there is some kind of help and fully understand you can't and don't want to waste more then 60 seconds on any one questions. I will try to read more into the documentation but all the links you sent are examplese which is how

Re: [iText-questions] add Table object to PdfContentByte

2009-12-12 Thread 1T3XT info
Lee Marshall wrote: > Ok, you mentioned that I need to use writeSelectedRows. Do you have a > working example/tutorial? Obviously, you haven't been looking: Old iText (iText in Action, 1st Edition): http://1t3xt.be/?X4e1 http://1t3xt.be/?X0a4 New iText (iText in Action, 2nd Edition): http://1t3x

Re: [iText-questions] add Table object to PdfContentByte

2009-12-12 Thread Lee Marshall
Lee Marshall wrote: > Dim stamper As iTextSharp.text.pdf.PdfStamper = Nothing > Dim underContent As iTextSharp.text.pdf.PdfContentByte = Nothing > reader = New iTextSharp.text.pdf.PdfReader(sourceFile) > rect = reader.GetPageSizeWithRotation(1) > stamper = New iTextSharp.text.pdf.PdfStamper(reader,

Re: [iText-questions] add Table object to PdfContentByte

2009-12-12 Thread 1T3XT info
Lee Marshall wrote: > Dim stamper As iTextSharp.text.pdf.PdfStamper = Nothing > Dim underContent As iTextSharp.text.pdf.PdfContentByte = Nothing > reader = New iTextSharp.text.pdf.PdfReader(sourceFile) > rect = reader.GetPageSizeWithRotation(1) > stamper = New iTextSharp.text.pdf.PdfStamper(reader,

[iText-questions] add Table object to PdfContentByte

2009-12-11 Thread Lee Marshall
Is it possible to add a Table with cells to iTextSharp.text.pdf.PdfContentByte? Example code I would like to add: 'create a 2 column table Dim nTbl As Table = New Table(2) nTbl.BorderWidth = 1 nTbl.BorderColor = New iTextSharp.text.Color(0, 0, 0) nT