我有2行,我想对齐(证明)它们。
我有这段代码:
Paragraph p=new Paragraph(ANC,fontFootData);
p.setLeading(1, 1);
p.setAlignment(Element.ALIGN_JUSTIFIED);
document.add(p);
Paragraph p2=new Paragraph(RUTTEL,fontFootData);
p2.setLeading(1, 1);
p2.setAlignment(Element.ALIGN_JUSTIFIED);
document.add(p2);
其中ANC和RUTTEL是字符串,但它们不对齐。
有人能帮助我吗?
答案 0 :(得分:3)
对于一行使用ALIGN_JUSTIFIED_ALL,多行使用ALIGN_JUSTIFIED。
答案 1 :(得分:0)
如果您使用的是C#,则:
p.Alignment = Element.ALIGN_JUSTIFIED;