彩票走势图

Stimulsoft Reports.Net开发者常见Q&A——变量

原创|使用教程|编辑:郑恭琳|2015-12-10 09:34:30.000|阅读 2173 次

概述:本片文章主要介绍Stimulsoft Reports.Net开发者在处理变量时遇到的常见问题及解决方案。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

< Stimulsoft Reports.Net v2015.3最新版本下载>

1.怎么在报表中添加一个变量?

可以使用以下代码来实现给报表添加变量。
添加int型的MyVariable变量代码示例:

C#

report.Dictionary.Variables.Add(new StiVariable("Category", "MyVariable", typeof(int), "1", false));

VB

Report.Dictionary.Variables.Add(New StiVariable("Category", "MyVariable", CType(GetType(int), Type),
"1", False))

添加string型的MyVariable变量代码示例:

C#

report.Dictionary.Variables.Add(new StiVariable("Category", "MyVariable", typeof(string), "1", false));

VB

Report.Dictionary.Variables.Add(New StiVariable("Category", "MyVariable", CType(GetType(String),
Type), """1""", False))

2.怎么访问变量的值?

要访问变量的值,你可以使用以下代码:

C#

StiReport report = new StiReport();
report.Load("Variables.mrt");
report.Compile();
//设置变量
report["VariableName"] = "Value";
//获取变量
object value = report["VariableName"];

VB

Dim Report As StiReport = New StiReport()
Report.Load("Variables.mrt")
Report.Compile()
'设置变量
Report.Item("VariableName") = " Value "
'获取变量
Dim Value As Object = Report.Item("VariableName")

3.怎么给文本添加一个系统变量?

使用以下代码:

text1.Text = "{PageNofM}";

购买最新正版授权!""

慧都年终盛典火爆开启,一年仅一次的最强促销,破冰钜惠不容错过!!优惠详情点击查看>>


标签:报表解决方案报表.NET报表控件

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP