Deleting Report components
Posted: Tue Jul 25, 2006 7:49 am
Hi, Stimulsoft Team!
Can i delete StiReport components in runtime?
Thanks!
Can i delete StiReport components in runtime?
Thanks!
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/
Yes you can delete components of StimulReport.Net in runtime.Robert wrote:Hi, Stimulsoft Team!
Can i delete StiReport components in runtime?
Thanks!
Code: Select all
StiComponent comp = report.GetComponents()["DataBand1"];
comp.Parent.Components.Remove(comp);
report.Show();