load rtf file?
Posted: Mon Oct 25, 2010 11:45 pm
hi
how to load rtf file? and rich text parsing rtf file?
thx
how to load rtf file? and rich text parsing rtf file?
thx
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
StiReport report = new StiReport();
report.Load();
Stimulsoft.Report.Components.StiRichText rt = report.GetComponents()["RichText1"] as StiRichText;
RichTextBox rtb = new RichTextBox();
rtb.LoadFile(@"e:\Sample.rtf");
rt.RtfText = rtb.Rtf;
report.Compile();
report.Show();