在Stimulsoft Reports中通过c#代码删除Band

时间:2016-01-19 08:03:04

标签: asp.net stimulsoft

我在ASP.Net WebForms中收到了Stimulsoft Reports的报告。

它有一个PageHeaderBand和一个DataBand。 我想在运行时删除报表的PageHeaderBand(当用户点击自定义按钮时)

请帮帮我。

1 个答案:

答案 0 :(得分:1)

答案是:

StiReport report = ...;
StiComponent component = report.GetComponentByName("<CustomName>");
report.GetComponents().remove(component);