如何在加载渲染和保存的 Stimulsoft 报告后添加变量值?
我正在使用 Stimulsoft Reporting for WPF。我已经保存了渲染的报告(以二进制格式保存在数据库中)。当我加载报告时,我可以在 Stimulsoft 报告查看器中查看它。
我想为变量注册一个新值(已经渲染)。这可能吗?
如果我尝试使用 report["variableName"]="xxxxx" 它不会执行任何操作。 如果我(重新)渲染报告,它就会变成空白。
想法?
I'm using Stimulsoft Reporting for WPF. I have saved a rendered report (in the database in binary format). When I'm loading the report I can view it in Stimulsoft Report Viewer.
I would like to register a new value for a variable (which was already rendered). Is this posible?
If I'm trying with report["variableName"]="xxxxx" it doesn't do anything.
If I (re)render the report it becomes blank.
Ideeas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下代码来访问变量。
如果报告已编译:
如果报告未编译:
You can use the following code for access to variable.
If report compiled:
If report not compiled:
编译报告时,您可以通过report.CompiledReport.Variables[“variableName”] =“xxxxx”访问变量;
when report is compiled you can access variables via report.CompiledReport.Variables["variableName"]="xxxxx";