如何通过C#代码设置子报表名称?
我需要通过代码设置子报表名称。我该怎么做? 我不想通过格式编辑器进行更改。 有没有办法在 C# 中设置子报告名称?
例如:
int number =“10”; 我需要将此数字显示为子报表名称。单击该数字时,将显示子报表详细信息。
Name Address Number
Mercury London **10**
这里的 10 号是按需子报告。
如何在C#代码中设置子报表名称?
I need to set the subreport name through code. How do i do this ?
i dont want to change through Format Editor.
Is there any way to set the Sub report name in C# ?
For Ex:
int number ="10";
I need this number to be shown as subreport name.and when clicked on that number,subreport details will be shown.
Name Address Number
Mercury London **10**
Here number 10 is on demand-subreport.
How to set subreport name in C# code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ReportDocument.Subreports().Name 属性。
Use the ReportDocument.Subreports().Name property.