se the Layout Property of TableObject to Wrapped
if I desinged a A4 Report, it's width is 21cm,default Band's width is 19cm,I Put a TableObject to Band,set it's Width to 19cm, ColumnCount to 6, RowCount to 1, Layout to Wrapped, Use ManualBuild event handle to print table, code is easy:
private void Table1_ManualBuild(object sender, EventArgs e)
{
for(int i=0; i<6; i++)
{
Table1.PrintColumn(i);
Table1.PrintRows();
}
}
in Runtime Column6 is wrapped, I hope column6 is no wrapped, because it is no wrapped in designed time. how to do?
private void Table1_ManualBuild(object sender, EventArgs e)
{
for(int i=0; i<6; i++)
{
Table1.PrintColumn(i);
Table1.PrintRows();
}
}
in Runtime Column6 is wrapped, I hope column6 is no wrapped, because it is no wrapped in designed time. how to do?
Comments
It's due to rounding errors. The fix will be available tomorrow.