mirror of https://github.com/apache/poi.git
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:
parent
2b2631225d
commit
a9ec119c40
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue