I'm using Infragistics.Windows.Reporting.Report to print simple reports. Now I noticed that the JobName in the printers queue always has the same ugly name ("Infragistics.Windows.Reporting.Report+Paginator") and I can't figure out how to set my own.
My code:
var report = new Report();report.ReportSettings.Margin = new Thickness(55);report.ReportSettings.HorizontalPaginationMode = HorizontalPaginationMode.Scale;report.PageHeader = ...; // Header datareport.PageHeaderTemplate = ...; // Header templatereport.PageFooter = ...; // Footer datareport.PageFooterTemplate = ...; // Footer templatereport.Section = new EmbeddedVisualReportSection(... /* some Control */);report.Print(true, false);
Any hint? Thanks in advance!
Patrick
Of course 2nd last line should read:
report.Sections.Add(new EmbeddedVisualReportSection(... /* some Control */));
HI,
I am investigating this issue.
Sincerely, Matt Developer Support Engineer