Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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

Signature
C#
C#
 public boolean GetRowHeightExact(int row)
Signature
vb.net
vb.net
Public Function GetRowHeightExact(ByVal row As Integer) As Boolean
Parameters
Param
row
row

An int representing the row index to get RowHeightExact for.

Returns

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

Remarks

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.

Example
Code Block
csharp
csharp
titleC#

          //--- Get RowHeightExact for the 3rd row
          bool rowHeightExact = oTable.GetRowHeightExact(2);
        
Code Block
vb.net
vb.net
titlevb.net

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