Hi, Stimulsoft Team!
Can i delete StiReport components in runtime?
Thanks!
Deleting Report components
-
- Posts: 4
- Joined: Tue Jul 25, 2006 7:38 am
Deleting Report components
Yes you can delete components of StimulReport.Net in runtime.Robert wrote:Hi, Stimulsoft Team!
Can i delete StiReport components in runtime?
Thanks!
Please use following code:
Code: Select all
StiComponent comp = report.GetComponents()["DataBand1"];
comp.Parent.Components.Remove(comp);
report.Show();
-
- Posts: 4
- Joined: Tue Jul 25, 2006 7:38 am
Deleting Report components
Thank you!