Hi,
I am trying to create a PDF Table but I am missing one or more libraries that I should reference. The code fragment I am trying is as follows:
Table table = new Table();
TableRow firstRow = table.Rows.AddTableRow();
TableCell firstCell = firstRow.Cells.AddTableCell();
Block block = firstCell.Blocks.AddBlock();
block.InsertText("Testing");
Thanks