我正在使用 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();
}
我是这样解决问题的:
StiReport report = new StiReport();
var image = report.GetComponentByName("Image1") as StiImage;
image.CanGrow =false ;