Hello everyone.
I am generating a csv file using the RenderReport function. I don't want to display Headers or StaticText and want to turn this off by code. (I'd rather not use the config file). The following code doesn't work. Any Ideas? I am using the evaluation v. 4.1.10.714.
Any hints appreciated, thank you!
I am generating a csv file using the RenderReport function. I don't want to display Headers or StaticText and want to turn this off by code. (I'd rather not use the config file). The following code doesn't work. Any Ideas? I am using the evaluation v. 4.1.10.714.
ReportProcessor rp =
new
ReportProcessor();
Hashtable deviceInfo =
new
Hashtable();
deviceInfo.Add(CsvRenderingExtension.Parameters.NoHeader,
true
);
deviceInfo.Add(CsvRenderingExtension.Parameters.NoStaticText,
true
);
RenderingResult res = rp.RenderReport(exportFormat.ToUpper(), _report,deviceInfo);
Any hints appreciated, thank you!