Printing Multiple Columns in a Report
There are many options for the layout and printing of your reports. One way is to print multiple items per line. In this example, all of these items are pulling from the same columns however they are on different rows:
AccountNumber1 Amount1 AccountNumber2 Amount2
Accountnumber3 Amount3
AccountNumber4 Amount4 AccountNumber5 Amount 5
To set the report up to print multiple items per line, set the following properties:
Me.C1WebReport1.Layout.Columns = 3
Me.C1WebReport1.Layout.ColumnLayout = ColumnLayoutEnum.Across
• C#
this.c1WebReport1.Layout.Columns = 3;
this.c1WebReport1.Layout.ColumnLayout = ColumnLayoutEnum.Across;
|