17.4.50 tblInd

This element 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 after applying the value of the jc element from the three levels of this property (17.4.26;17.4.27;17.4.28), then this property shall be ignored.

[Example: Consider a table which must be indented one inch from the left margin, as follows:

R1C1

R1C2

R2C1

R2C2

This setting would be specified using the following WordprocessingML:

<w:tblPr>
  <w:jc w:val="start"/>
  <w:tblInd w:w="1440" w:type="dxa"/>
</w:tblPr>

If the properties on this table were now modified to justify it on the right side by setting the value of the jc element to right, as follows:

<w:tblPr>
  <w:jc w:val="end"/>
  <w:tblInd w:w="1440" w:type="dxa"/>
</w:tblPr>

This table would now have no indent, as the justification is no longer on the leading edge (left):

R1C1

R1C2

R2C1

R2C2

end example]

This element’s content model is defined by the common table measurement definition in 17.4.87.

Last updated on