如何设置位置和大小图像变量Stimulsoft Core?

问题描述 投票:0回答:1

我正在使用 stimulsoft 进行 ASP.NET Core MVC。 我想获取图像变量并设置图像的设置属性。 这是我的代码:

public ActionResult GetReportSnapshot(string sort)
{
        StiReport report = new StiReport();
        report.Load(Server.MapPath("~/Reports/Jobs.mrt"));

        report["@PrjectId"] = 1;
        report["@OrderBy"] = sort;
      
        // this is the problem:
        report.Dictionary.Variables["image"].width=5
    
        report.Render();
}
asp.net-core-mvc stimulsoft
1个回答
0
投票

我是这样解决问题的:

  StiReport report = new StiReport();
  var image = report.GetComponentByName("Image1") as StiImage;
  image.CanGrow =false ;
© www.soinside.com 2019 - 2024. All rights reserved.