I\'m trying to add a table to a document using iTextSharp. Here is an example:
Document document = new Document(PageSize.LETTER,72, 72, 72, 72); PdfWriter writer
Figured it out. Apparently table.Width is a percent and not the width in pixels. So using:
table.Width
table.Width = 100;
Worked like a charm.