0

这就是我想要做的:我必须根据我通过 URL 发送的参数动态更改母版页的高度和宽度?

4

1 回答 1

1

我们可以在 beforeFactory 事件中做到这一点。首先,需要填写本主题中描述的母版页的“名称”属性。

假设我们有一个整数“myHeight”报告参数:

var dynamicHeight=params["myHeight"].value+"in"; //don't forget the unit
reportContext.getDesignHandle().findMasterPage("myMasterPage").setProperty("height", 
dynamicHeight);
reportContext.getDesignHandle().findMasterPage("myMasterPage").pageType="custom";
于 2013-08-23T11:42:25.537 回答