Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
700
ultragridDocumentExporter - Page truncation - screen resolution
posted

Hi,

 I have an issue in printing ultrawingrid using document exporter.

 I need to print 4 grids in one page and below is the code used.

*********************************************************************************************

Infragistics.Documents.Report.Report report = new Infragistics.Documents.Report.Report();

report.Preferences.Printing.PaperOrientation = Infragistics.Documents.Report.Preferences.Printing.PaperOrientation.Landscape;

report.Preferences.Printing.PaperSize = Infragistics.Documents.Report.Preferences.Printing.PaperSize.A4;

Infragistics.Documents.Report.Section.ISection section = report.AddSection();

this.ugrdDocExporter.Export(grid1, section);

this.ugrdDocExporter.Export(grid2, section);

this.ugrdDocExporter.Export(grid3, section);

report.Print(printername);

*******************************************************************************************

 It prints properly on a system that has a resolution of 1024 / 768 but data gets truncated for the resolution 1440 / 900.

 Is it a bug in the control or some property missing ?

 Thx.

 Cheers