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

时间:2019-07-15 11:56:35

标签: core stimulsoft

您可以使用stimulsofr ver mvc内核。 我想获取图像变量并设置图像的设置属性。 这是我的代码; 公共ActionResult GetReportSnapshot(字符串排序)     {

    StiReport report = new StiReport();
    report.Load(Server.MapPath("~/Reports/Jobs.mrt"));

    report["@PrjectId"] = 1;
    report["@OrderBy"] = sort;

  // this problem
    report.Dictionary.Variables["image"].width=5

    report.Render();

}

1 个答案:

答案 0 :(得分:0)

嗨,我爱这个问题:

  StiReport report = new StiReport();
  var image = report.GetComponentByName("Image1") as StiImage;
  image.CanGrow =false ;