Bulk Report Generation in RTF Format via C#
Generate reports in RTF format using data source & a template.
How to Generate RTF based Reports Using C#
In order to create RTF reports, we’ll use
API which is a feature-rich, powerful and easy to use report generation API for C# platform. Open
package manager, search for Aspose.Words and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Words
Steps to Assemble RTF via C#
- Load template in an instance of Document class
- Create an object of ReportingEngine
- Set engine options
- Call ReportingEngine.BuildReport method
- Pass the template, data source as perameters
- Save the result with Doucment.Save method
System Requirements
Before integrating the code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms
- Development environment like Microsoft Visual Studio
- Aspose.Words for .NET referenced in your project
Generate RTF Reports using C# example code
// build data source
var xml = JsonConvert.DeserializeXmlNode(File.ReadAllText("filenameDocx"), "RootElement");
var dataSet = new DataSet("datasourceName");
dataSet.ReadXml(new MemoryStream(Encoding.UTF8.GetBytes(xml.InnerXml)));
var dataTable = dataSet.Tables["datasourceName"];
// load template for report
var doc = new Document("template.rtf");
// create ReportingEngine
var engine = new Reporting.ReportingEngine
{
// set appropriate options
Options = Reporting.ReportBuildOptions.AllowMissingMembers
};
// build report using template & data source
engine.BuildReport(doc, dataTable, "datasourceName");
// save the report
doc.Save("output.rtf", SaveFormat.Doc);
Free App to Assemble RTF
Check our live demos to create RTF files with following benefits.
RTF What is RTF File Format
Introduced and documented by Microsoft, the Rich Text Format (RTF) represents a method of encoding formatted text and graphics for use within applications. The format facilitates cross-platform document exchange with other Microsoft Products, thus serving the purpose of interoperability. This capability makes it a standard of data transfer between word processing software and, hence, contents can be transferred from one operating system to another without losing document formatting. The file format specifications are available by Microsoft for public download and can be referred to from developer's perspective.
Read MoreOther Supported Report Generation Formats
Using C#, one can easily generate reports of multiple formats including.