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
The WidthPercentage property is no longer available in iText7. Use the following instead
table.SetWidth(new UnitValue(UnitValue.PERCENT, 100));