Hi,
When printing spreadsheets that have many columns, which don't fit horizontally, the last column that partially fits on a page is displayed in two places: partially at the right of the page and entirely on the next page.
Is there some option for this, or does it look like an Infragistics bug? The only thing I tried is something in the line of
foreach (UltraGridColumn column in e.PrintLayout.Bands[0].Columns) { column.PerformAutoResize(PerformAutoSizeType.AllRowsInBand, true); }
I attached a picture to better understand the problem, the columns display the same information, one truncated, and one not truncated. .
Thank you,
Alex
In the mean time I discovered SplitClippedColumns and RepeatClippedColumns and decided that this behaviour is quite reasonable.