彩票走势图

logo FastReport中文文档

.Net 对象


在脚本中,您可以使用以下程序集中定义的任何 .Net 对象:

System.dll
System.Drawing.dll
System.Windows.Forms.dll
System.Data.dll
System.Xml.dll

点击复制


除此之外,您还可以使用 FastReport 程序集中定义的任何对象。如果需要访问其他程序集,请将其添加到程序集列表中。这可以在 "Report|Options...(报告|选项...)"菜单中选择 "Script(脚本)"选项卡来完成:

fastreport

例如,如果要在报告中使用在应用程序中声明的函数,请在报告程序集列表中添加应用程序程序集(.exe 或 .dll)。然后就可以使用应用程序的命名空间调用该函数。例如,应用程序中定义了以下函数:

namespace Demo
{
  public static class MyFunctions
  {
    public static string Func1()
    {
      return"Hello!";
    }
  }
}

点击复制

在脚本中调用它的方法如下:
string hello = Demo.MyFunctions.Func1();

点击复制

如果您使用的是 "Demo",那么它将允许您进行短合成:
string hello = MyFunctions.Func1();

点击复制


如需下载fastreport最新试用版,请点产品名跳转产品下载页>>

扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP