Hi everyone,
I had to create a print document to display some data (I wish to display them into a table) but the problem is, I have too much columns to show, so they can't fit within one page.
I want to be able to display columns who don't fit on the first page on the second one, columns who don't fit on the second one on the third page and so on... Like an excel spreadsheet who is too wide to fit on one page.
Anyone knows how to do that?
I had already tried the "UltraWinGridPrintDocument" control, it works but that control doesn't let me change the layouts of the table...
No need to reply me, I've found a way to do what I had to do...
I've created a class who inherits of a .NET PrintDocument control and I have overloaded some print methods to create a document who is able to print a table with a lot of columns, (in my case about 30 columns) on many pages.
I didn't use to do that an Infragistics control but the same thing could be done with the UltraPrintDocument.
Hi,
Can you please give some clue about the approach that you have suggested. I am trying to do something similar. Currently If a column does not fit on page 1 of the grid , it still prints that clipped column on page 1 and again on second page it will re print the last chopped off column of page 1 . I would like to override this behaviour , so that if the column does not fit on page 1 , then print it only on page 2.