欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

fastreport 如何动态写入模板内容

程序员文章站 2022-03-15 23:45:06
...

fastreport 如何动态写入模板内容

实例:
fastreport 如何动态写入模板内容
- 由于两排数据是一样的 这里databand 不知道怎么用 于是就想不如自己将读取的数据直接写入到模板中
- 在fastReport 中其实每个元素都是可以 通过report 找到的 通过右边的树可以得知 row 位 row9
- 图片链接和图片上传

代码块

   TableCell Cell41;
    TableRow row=report.FindObject("Row9") as TableRow;
    ObjectCollection objectCollection=new ObjectCollection();
    row.GetChildObjects(objectCollection);
    int i = objectCollection.Count;
    Cell41=objectCollection[2] as TableCell;
    Cell41.Text = "测试";
    this.report.Show();      

这样显示的数据就可以*的控制了


相关标签: fastreport