文档彩票走势图>>FastReport中文文档>> .Net 对象
.Net 对象
在脚本中,您可以使用以下程序集中定义的任何 .Net 对象:
System.dll System.Drawing.dll System.Windows.Forms.dll System.Data.dll System.Xml.dll
点击复制
除此之外,您还可以使用 FastReport 程序集中定义的任何对象。如果需要访问其他程序集,请将其添加到程序集列表中。这可以在 "Report|Options...(报告|选项...)"菜单中选择 "Script(脚本)"选项卡来完成:
例如,如果要在报告中使用在应用程序中声明的函数,请在报告程序集列表中添加应用程序程序集(.exe 或 .dll)。然后就可以使用应用程序的命名空间调用该函数。例如,应用程序中定义了以下函数:
namespace Demo { public static class MyFunctions { public static string Func1() { return"Hello!"; } } }
点击复制
string hello = Demo.MyFunctions.Func1();
点击复制
string hello = MyFunctions.Func1();
点击复制
如需下载fastreport最新试用版,请点产品名跳转产品下载页>>