I''m using a version of the GridPrintToFitDocument to fit a GridDataBoundGrid onto a single width page (multiple pages long). Everything works great but now I want to remove the row headers to have more real estate on the page to work with.
The documentation/samples/forum questions I''ve seen all seem to relate only to GridControl and not GridDataBoundGrid. I''ve tried:
grid.Model.Properties.PrintRowHeader = false;
and
grid.Properties.PrintRowHeader = false;
and
setting the grid_QueryColWidth delegate and setting the 0 indexed colum to a width of 0.
All of these work in the GridControl but don''t seem to have any affect on the GridDataBoundGrid control. I''ve attached the class that I''ve been modifying.
-Tyler
GridPrintToFitDocument_6614.zip