Articles in this section
Category / Section

Export the report as a text file in the Bold Reports

Published:
Updated:

In an embedded application, there may be situations where you need to export reports as text files. Although the Bold Reports might not provide a direct option for exporting tables as text files, you can achieve this by leveraging the CSV (Comma-Separated Values) export functionality. CSV export allows you to generate text files.

To set up report options for exporting reports as text files in an embedded application, use the code provided below. In your embedded application, navigate to the ReportViewerController file. In this file, locate the OnInitReportOptions method.

Code snippet:

public void OnInitReportOptions(ReportViewerOptions reportOption)
        {
            .....
            reportOption.ReportModel.CsvOptions = new BoldReports.Writer.CsvOptions()
            {
                Encoding = System.Text.Encoding.Default,
                FileExtension = ".txt"
            };
            
        }

By utilizing the CSV export features in the viewer, you can successfully export the report as a text file as shown in the below snapshot.

image.png

Click here to download the sample application.

Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied