Creates table row height (trHeight) in a WordprocessingML document.
The trHeight element specifies the height of a table row, along with a rule determining how the height should be applied.
Reference: http://officeopenxml.com/WPtableRow.php
<xsd:complexType name="CT_Height"> <xsd:attribute name="val" type="s:ST_TwipsMeasure"/> <xsd:attribute name="hRule" type="ST_HeightRule"/></xsd:complexType> Copy
<xsd:complexType name="CT_Height"> <xsd:attribute name="val" type="s:ST_TwipsMeasure"/> <xsd:attribute name="hRule" type="ST_HeightRule"/></xsd:complexType>
createTableRowHeight(1000, HeightRule.EXACT); Copy
createTableRowHeight(1000, HeightRule.EXACT);
Creates table row height (trHeight) in a WordprocessingML document.
The trHeight element specifies the height of a table row, along with a rule determining how the height should be applied.
Reference: http://officeopenxml.com/WPtableRow.php
XSD Schema