Hi Costa,
There are a few ways to do that and check the Overview tab for samples:
CrystalDecisions.Shared.TextFormatOptions TxtExpOpts = new TextFormatOptions();
Or using RAS:
CrystalDecisions.ReportAppServer.ReportDefModel.TextExportFormatOptions txtFmtOpts = new TextExportFormatOptions()
CrystalDecisions.ReportAppServer.ReportDefModel.ExportOptions exportOpts1 = new CrystalDecisions.ReportAppServer.ReportDefModel.ExportOptions(); |
exportOpts1.ExportFormatType = CrReportExportFormatEnum.crReportExportFormatText; |
exportOpts1.FormatOptions = RastxtExpOpts; rptClientDoc.PrintOutputController.ExportEx(exportOpts1).Save(outputFileName, true); |
Don