避免将文本字段拆分为多个页面

时间:2012-05-24 20:37:20

标签: jasper-reports

我有一份主要报告,在主报告中有一份名为“

”的子报告
<detail>
    <band height="50">
        <subreport>
            <reportElement x="0" y="1" width="802" height="49" isPrintInFirstWholeBand="true" isPrintWhenDetailOverflows="true"/>
            <subreportParameter name="project_id">
                <subreportParameterExpression><![CDATA[$P{project_id}]]></subreportParameterExpression>
            </subreportParameter>
            <connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
            <subreportExpression><![CDATA["subs/Project_planned.jasper"]]></subreportExpression>
        </subreport>
    </band>
</detail>

子报表中存在一个问题,因为详细信息区域中的文本字段在多个页面上分开,看起来不太好。是否有一个选项可以在使用属性isStretchWithOverflow

时阻止文本字段拆分为多个页面

文本字段的当前代码

                <textField isStretchWithOverflow="true" isBlankWhenNull="true">
                <reportElement stretchType="RelativeToBandHeight" x="555" y="0" width="99" height="21" isPrintInFirstWholeBand="true" forecolor="#000000"/>
                <box leftPadding="2">
                    <topPen lineWidth="1.0" lineColor="#000000"/>
                    <leftPen lineWidth="1.0" lineColor="#000000"/>
                    <bottomPen lineWidth="1.0" lineColor="#000000"/>
                    <rightPen lineWidth="1.0" lineColor="#000000"/>
                </box>
                <textElement verticalAlignment="Middle">
                    <paragraph lineSpacing="Single"/>
                </textElement>
                <textFieldExpression><![CDATA[$F{logic}]]></textFieldExpression>
            </textField>

它的外观示例(抱歉缺少数据):

avoid split of text field on multiple pages

1 个答案:

答案 0 :(得分:11)

是的,但在文本字段中没有。对于文本字段所在的波段,您可以将“分割类型”设置为Prevent。如果你在Detail Band上设置它并且该行需要溢出到下一页,它会将整行移动到下一页。