se the Layout Property of TableObject to Wrapped

edited 10:42PM in FastReport .NET
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?

Comments

  • edited 10:42PM
    Hello,

    It's due to rounding errors. The fix will be available tomorrow.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.