Hi
I have a section with PageSize A4. I have a grid in this section that has many rows and can extend to several pages.
How can I make sure that a row will not be split between the end of one page and the start of another
Thanks.
Do you mean horizontally or vertically?
Are you talking about an UltraWinGrid that you are exporting? Or is this an IGrid you are creating yourself?
Hi Mike
Sorry for not clarifying.
Its an IGrid that I have created in my Report with Page size set the A4
section.AddGrid();
I save the report in PDF format and the grid looks good except that the last row of a page doesnt fit in (VERTICALLY) and is split between this page and the next page . I want to avoid Vertical split of rows.
Thanks
Oh, I think I understand now. There's a property on some objects called KeepSolid. I beleive this property exists on the IGridRow, so you can set it on each row and keep it from breaking up the rows.
Exactly what I needed.