docx
    Preparing search index...

    Function createTableRowHeight

    • 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>

      Parameters

      • value:
            | number
            | `${number}mm`
            | `${number}cm`
            | `${number}in`
            | `${number}pt`
            | `${number}pc`
            | `${number}pi`
      • rule: "auto" | "atLeast" | "exact"

      Returns XmlComponent

      createTableRowHeight(1000, HeightRule.EXACT);