瀏覽代碼

Keep last run properties when resetting paragraph text

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1875977 13f79535-47bb-0310-9956-ffa450edef68
tags/before_ooxml_3rd_edition
Alain Béarez 4 年之前
父節點
當前提交
c7c3bbb0ed
共有 1 個檔案被更改,包括 11 行新增3 行删除
  1. 11
    3
      src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java

+ 11
- 3
src/ooxml/java/org/apache/poi/xddf/usermodel/text/XDDFTextParagraph.java 查看文件

@@ -60,7 +60,7 @@ public class XDDFTextParagraph {
final int count = paragraph.sizeOfBrArray() + paragraph.sizeOfFldArray() + paragraph.sizeOfRArray();
this._runs = new ArrayList<>(count);

for (XmlObject xo : _p.selectChildren(QNameSet.ALL)) {
for (XmlObject xo : paragraph.selectChildren(QNameSet.ALL)) {
if (xo instanceof CTTextLineBreak) {
_runs.add(new XDDFTextRun((CTTextLineBreak) xo, this));
} else if (xo instanceof CTTextField) {
@@ -75,6 +75,11 @@ public class XDDFTextParagraph {
}

public void setText(String text) {
// keep the properties of current last run
XmlObject existing = null;
if (_runs.size() > 0) {
existing = _runs.get(_runs.size() - 1).getProperties().copy();
}
// remove all runs
for (int i = _p.sizeOfBrArray() - 1; i >= 0; i--) {
_p.removeBr(i);
@@ -86,7 +91,10 @@ public class XDDFTextParagraph {
_p.removeR(i);
}
_runs.clear();
appendRegularRun(text);
XDDFTextRun run = appendRegularRun(text);
if (existing != null) {
run.getProperties().set(existing);
}
}

public String getText() {
@@ -119,7 +127,7 @@ public class XDDFTextParagraph {
// by default, line break has the font properties of the last text run
for (XDDFTextRun tr : new IteratorIterable<>(new ReverseListIterator<>(_runs))) {
CTTextCharacterProperties prevProps = tr.getProperties();
// let's find one that is not undefined
// let's find one which is not undefined
if (prevProps != null) {
br.setRPr((CTTextCharacterProperties) prevProps.copy());
break;

Loading…
取消
儲存