Return and set paragraph indentation level

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1876406 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alain Béarez 2020-04-11 21:43:18 +00:00
parent 2b2631225d
commit a9ec119c40
1 changed files with 26 additions and 0 deletions

View File

@ -171,6 +171,32 @@ public class XDDFTextParagraph {
return run;
}
/**
* Returns the paragraph indentation level.
*
* @return indentation level of the paragraph.
*/
public int getIndentationLevel() {
if (_p.isSetPPr()) {
return getProperties().getLevel();
} else {
return 0;
}
}
/**
* Specifies the paragraph indentation level, between 1 and 9.
*
* @param level
* new indentation level for the paragraph.
* Use <code>null</code> to unset the indentation level.
*/
public void setIndentationLevel(Integer level) {
if (_p.isSetPPr()) {
getProperties().setLevel(level);
}
}
/**
* Returns the alignment that is applied to the paragraph.
*