6
我有2行,我想對齊(證明)他們。如何對齊段落(證明)與Itext?
我有這樣的代碼:
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是字符串,但他們不對齊。
有人能幫助我嗎?
這些字符串有多長?也許你正在尋找ALIGN_JUSTIFIED_ALL而不是ALIGN_JUSTIFIED。無論如何:對齊對我們來說都是合適的,沒有理由不適合你。 –