Me.UltraGridPrintDocument1.Grid = Me.UltraGrid1
How, or is there a way to assign or add multiple grids to the print document and what might that way be? Can they be combined and yet achieve the same visual form appearance? Not sure that creating my own control and inheriting from the UltraGridPrintDocument will help.
- Ken
As mentioned in another forum post http://forums.infragistics.com/forums/p/16057/58546.aspx#58546, one way to accomplish this is by creating a composite PrintDocument that will print multiple PrintDocuments using Reflection to coordinate the print loop. http://www.csharp-examples.net/combine-multiple-printdocuments/.
This method will not allow you to print multiple grids on the same page, but it will allow you to chain the output of multiple UltraGridPrintDocuments together one after the other. This allows you to have concistent page numbering, and to share a single instance Print Settings (Margins, etc).