mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
* Add getters and setters for XWPFTable indentation. The element tblPr->tblInd represents "table indent from leading margin". It specifies the indentation which shall be added before the leading edge of the current table in the document (the left edge in a left-to-right table, and the right edge in a right-to-left table). This indentation should shift the table into the text margin by the specified amount. This value is specified in the units applied via its type attribute. Any width value of type pct or auto for this element shall be ignored. If this element is omitted, then the table shall inherit the table indentation from the associated table style. If table indentation is never specified in the style hierarchy, no indentation shall be added to the parent table. If the resulting justification on any table row is not left, then this property shall be ignored. To implement this property, we included a getter and a setter for the property value, and another couple of getter/setter for the existence (and validity) or absence of the property itself, for clients to know they must fall back to the table style. * Address reviewer comments.