我正在尝试为SSRS设计自定义报告项。有没有办法在实现ICustomReportItem时访问EvaluateReportItemInstance函数中的报表参数?
请注意,我不尝试访问正在设计的自定义报表项的自定义属性。我希望访问报告中声明的所有参数。
答案 0 :(得分:0)
我的错误。
这需要在实现CustomReportItemDesigner时完成,而不是ICustomReportItem。例如:
public class MyCustomReportItemDesigner : Microsoft.ReportDesigner.CustomReportItemDesigner
{
public override void InitializeNewComponent()
{
//this.Report.ReportParameters;