更改文本框中的字体大小 - apache poi word docx
Change font size in text box - apache poi word docx
我找到了解释如何将新文本框插入 docx 文档的答案。
create text box in document .docx using apache poi
问题是我无法更改新创建的文本框内的字体大小。
有人知道怎么做吗?
参考:create text box in document .docx using apache poi
我代码中的 ctTxbxContent.addNewP()
创建了一个 CTP
对象。 XWPFParagraph
有一个构造函数 XWPFParagraph(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTP prgrph, IBody part)
。因此,您可以从 CTP
对象中获取 XWPFParagraph
,然后进一步使用默认的 apache-poi
方法。
...
CTTxbxContent ctTxbxContent = ctShape.addNewTextbox().addNewTxbxContent();
XWPFParagraph textboxparagraph = new XWPFParagraph(ctTxbxContent.addNewP(), (IBody)doc);
XWPFRun textboxrun = textboxparagraph.createRun();
textboxrun.setText("The TextBox text...");
textboxrun.setFontSize(24);
...
我找到了解释如何将新文本框插入 docx 文档的答案。
create text box in document .docx using apache poi
问题是我无法更改新创建的文本框内的字体大小。
有人知道怎么做吗?
参考:create text box in document .docx using apache poi
我代码中的 ctTxbxContent.addNewP()
创建了一个 CTP
对象。 XWPFParagraph
有一个构造函数 XWPFParagraph(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTP prgrph, IBody part)
。因此,您可以从 CTP
对象中获取 XWPFParagraph
,然后进一步使用默认的 apache-poi
方法。
...
CTTxbxContent ctTxbxContent = ctShape.addNewTextbox().addNewTxbxContent();
XWPFParagraph textboxparagraph = new XWPFParagraph(ctTxbxContent.addNewP(), (IBody)doc);
XWPFRun textboxrun = textboxparagraph.createRun();
textboxrun.setText("The TextBox text...");
textboxrun.setFontSize(24);
...