如何将文本字段列表左对齐
How to align the list of text fields with left alignment
这是我得到输出的方式:
查了很多博客还是没找到。
jrxml:
<textField isStretchWithOverflow="true">
<reportElement style="Table_TH" x="2" y="25" width="552" height="19" isRemoveLineWhenBlank="true" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top">
<font fontName="Poppins" size="11" isBold="false"/>
<paragraph lineSpacing="Single" firstLineIndent="30"/>
</textElement>
<textFieldExpression><![CDATA[$F{text}]]></textFieldExpression>
</textField>
我尝试使用 <frame>
但仍然无法正常工作
您必须将 属性 firstLineIndent
设置为 0,并将 I.
和 II.
分别放在 textField
.
这是我得到输出的方式:
查了很多博客还是没找到。
jrxml:
<textField isStretchWithOverflow="true">
<reportElement style="Table_TH" x="2" y="25" width="552" height="19" isRemoveLineWhenBlank="true" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top">
<font fontName="Poppins" size="11" isBold="false"/>
<paragraph lineSpacing="Single" firstLineIndent="30"/>
</textElement>
<textFieldExpression><![CDATA[$F{text}]]></textFieldExpression>
</textField>
我尝试使用 <frame>
但仍然无法正常工作
您必须将 属性 firstLineIndent
设置为 0,并将 I.
和 II.
分别放在 textField
.