I am trying to print a C1Flexgrid to a C1PrintDocument control where the width of the grid is larger than the printdocument width.
Doing this method
.RenderBlockC1Printable(msgBindingChecklist, .BodyAreaSize.Width, 50, Nothing, StyleText)
it will break the columns up between multiple pages.
I then tried:
Dim ro As New RenderC1Printable(doc)
ro.Control = msgBindingChecklist
ro.AutoWidth = True
.RenderBlock(ro)
This expands the grid from to fit the entire width of printable area past the margins.
Is there a way to get the grid to autosize down in size to fi twithin the margins set for the page without breaking off columns to the next page?