Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
(Solved) Print preview, - column appears twice, truncated at right and full at left
posted

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

 

  • 100
    posted

    In the mean time I discovered SplitClippedColumns and RepeatClippedColumns and decided that this behaviour is quite reasonable.