Hello,
I have a table with several rows. Some of them are spanned.
Each of row has constant height in
8 points:
var tableRow = new TableBodyRow(Unit.Point(8));
Each of cell contains a TextBox with following style:
var textBox = new TextBox
{
Docking = DockingStyle.Fill,
CanGrow = false,
CanShrink = true,
TextWrap = false,
};
But after exporting to Pdf some of columns are higher that
8 points (see picture).
How to fix the row height for a table?
P.S. The similar problem is described here: "
http://www.telerik.com/community/forums/reporting/telerik-reporting/how-to-equal-cell-s-height.aspx"
Thanks,
-Andrey Popov