I created a Table and in the last row I added Borders.
TableCellProperties tcp = new TableCellProperties();
TableCellBorders tcb = new TableCellBorders(
new TopBorder() { Val = new EnumValue<BorderValues>(BorderValues.BasicThinLines) },
new BottomBorder() { Val = new EnumValue<BorderValues>(BorderValues.Double) });
tcp.Append(tcb);
gCell.Append(tcp);
My Problem is that the text '28.329,36 €' is too close to the top border. I would like to put the text a bit lower so the text has the same distance to the top and bottom border.
How could I achieve this?




