0

我正在尝试为 SSRS 设计一个自定义报告项。实现 ICustomReportItem 时,是否可以访问 EvaluateReportItemInstance 函数中的报告参数?

请注意,我没有尝试访问正在设计的自定义报告项的自定义属性。我希望访问报告中声明的所有参数。

4

1 回答 1

0

我的错。

这需要在实现 CustomReportItemDesigner 而不是 ICustomReportItem 时完成。例如:

public class MyCustomReportItemDesigner : Microsoft.ReportDesigner.CustomReportItemDesigner
{
    public override void InitializeNewComponent()
    {
        //this.Report.ReportParameters;
于 2012-08-10T19:53:38.730 回答