Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
852 views

Add a column to PdfPTable, iTextSharp

I'm creating a PDF document using iTextSharp. I see how to create a new table with a number of columns but I can't see anyway to dynamically add a new column. The problem I have is I'm not going to ...
2
votes
1answer
734 views

how do I add bookmark into a pdfpcell

I am doing a report which contains more 1000 records by using pdfptable of itext. it is not easy to seek a particular record, so i am wondering if there is any way to add bookmark in a pdfpcell.
2
votes
2answers
4k views

iTextSharp: SplitLate/SplitRows?

I have an issue where I have a table (PdfPTable) that may extend past the length of the page. I have tried looking up how to "split" a table onto more than one page but iTextSharp is pretty poorly ...
1
vote
1answer
316 views

Multiple Table Column alignment in iTextsharp

I am creating a table where each column has its own alignment as shown below. How do I accomplish it at column level than at cell level?
1
vote
3answers
1k views

iTextSharp and moving some data to next page

I am creating an invoice using the iTextSharp. That displays nicely but sometime, when invoice items are larger in qty, the summary portion (which displays subtotal, tax, discounts, grand total etc) ...
0
votes
0answers
24 views

how to create printable pdf which prints only inputed data?

I have a editable PDF, I want to take print of it but i want only the data entered by end user will be print only not the other content of the PDF, How can i do this?
0
votes
1answer
84 views

How to make the table non breaking using iTextSharp

I am having a table PdfPTable tblSummary = new PdfPTable(1); And it does have 2 tables nested within it. How can I make the tblSummary to appear as a whole (the rows must not break to another ...
0
votes
1answer
136 views

iTextSharp: Need help to repeat some columns in the 1st row of the table after page break

I am creating a PDF document using iTextSharp. The document is a bunch of tables. Some of the tables span over a few pages. First column is a date. If several rows of the table has the same date in ...
0
votes
0answers
92 views

Split a PdfPTable into smaller tables

I was wondering if there was any way to split a large PdfPTable into smaller PdfPTables? If there is a way, then any sample code would be extremely helpful. Thanks
0
votes
0answers
280 views

How do i make a dotted border in a PdfPTable with iTextSharp?

I would like to make a dotted line instead of a solid line in a PdfPTable in iTextSharp. Could anyone help me? I would really appreciate a code example! Thanks!!
0
votes
1answer
313 views

document.add resize the document using iText

When I try to read an HTML file (using HTMLWorker.parseToList) and create a PDF document using document.add(element) the resulting page is getting resized. The initially set page size is getting ...