Returns or a boolean that represents if the row height is "exact" (true) or "at least" (false).

 public boolean GetRowHeightExact(int row)
Public Function GetRowHeightExact(ByVal row As Integer) As Boolean

An int representing the row index to get RowHeightExact for.

A boolean that represents if the specified row's height is "exact" (true) or "at least" (false).

MS Word equivalent: Table menu > Table properties... > Row tab > Size section > Row #: > Row height is:

Note: To set this property, you must first set the RowHeight property.


          //--- Get RowHeightExact for the 3rd row
          bool rowHeightExact = oTable.GetRowHeightExact(2);
        

          '--- Get RowHeightExact for the 3rd row
          Dim rowHeightExact As Boolean = oTable.GetRowHeightExact(2)