ReportDocument report=new ReportDocument();
           
 //加载报表
report.Load(Server.MapPath("xx.rpt"));
           
//获得对DetailSection1节title标签对象的引用
TextObject to = 
    report.ReportDefinition.Sections["DetailSection1"].ReportObjects["title"] As TextObject;

//设置title标签的值
to.Text="新文本值";

相关文章:

  • 2021-07-25
  • 2021-10-15
  • 2021-11-18
  • 2022-12-23
  • 2021-09-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-09
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2021-08-25
相关资源
相似解决方案