6
Ho un paragrafo di testo che vorrei che appaia al centro del documento. Come posso farlo in docx4j? Attualmente sto usando:Come centrare il testo in docx4j
PPr paragraphProperties = factory.createPPr();
//creating the alignment
TextAlignment align = new TextAlignment();
align.setVal("center");
paragraphProperties.setTextAlignment(align);
//centering the paragraph
paragraph.setPPr(paragraphProperties);
ma non funziona.