I have Create the report and tried to exprot programatially like below, but styles does not seem to be exproted.
TRANS_DELIVERY_REPORT
report = new TRANS_DELIVERY_REPORT();
Telerik.Reporting.Processing.
ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
Telerik.Reporting.Processing.
RenderingResult result = reportProcessor.RenderReport("XLS", report, null);
FileStream fs = new FileStream("C:\\report1.xls", FileMode.Create);
fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
fs.Flush();
fs.Close();
can any one please let me know what need to be done? thank you.