4

聞きたいです。1 つのテキスト フィールドに段落の後に改行を追加する方法。例えば、

レポートは、情報を伝達するという特定の意図を持って作成されたテキスト作品 (通常、執筆、スピーチ、テレビ、または映画) です。

このようになるには: -

"A report is a textual work  line 1

(usually of writing, speech, television, or film) line 2

 made with the specific intention of line 3

 relaying information" line 4
4

1 に答える 1

9

\n(改行) 記号を使用するか、マークアップ構文を使用できます。

標本、見本:

<title>
    <band height="167" splitType="Stretch">
        <textField isStretchWithOverflow="true">
            <reportElement x="414" y="38" width="100" height="20"/>
            <textElement markup="styled"/>
            <textFieldExpression><![CDATA["A report is a textual work <br/>(usually of writing, speech, television, or film) <br/>made with the specific intention of <br/> relaying information"]]></textFieldExpression>
        </textField>
        <textField isStretchWithOverflow="true">
            <reportElement x="26" y="38" width="100" height="20"/>
            <textElement/>
            <textFieldExpression><![CDATA["A report is a textual work\n(usually of writing, speech, television, or film)\nmade with the specific intention of \nrelaying information"]]></textFieldExpression>
        </textField>
    </band>
</title>

スタイル付きテキストの使用の詳細については、こちらを参照してください。

于 2012-04-09T08:06:08.400 に答える