简体   繁体   中英

Export Formats for CSV File in Stimulsoft

Hi, I'm trying to export a report to CSV format via code, using Stimulsoft Reports .Net v2.3.0, but i'cant find de property to set "Bands Filter: Data and Headers/Footers". This property exists at the Report Viewer, but i need know how to set it in code. I attach the the cap of the properties at Report Viewer Thanks :(

报表查看器中属性的上限

导出选项代码的名称为

StiCsvExportSettings.DataExportMode

Finally I did this:

config.DataExportMode = StiDataExportMode.Data;
config.DataExportMode = StiDataExportMode.DataAndHeadersFooters;
config.DataExportMode = StiDataExportMode.AllBands;

Thanks for the help :D

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM