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

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

Signature
C#
C#
 public void SetRowHeightExact(int row, boolean exact)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub SetRowHeightExact(ByVal row As Integer, ByVal exact As Boolean)
{signature}
{parameters}
{param:row}An {{int}} representing the row index to set RowHeightExact for.{param}
{param:exact}A {{boolean}} that represents if the specified row's height should be "exact" \(true\) or "at least" \(false\).{param}
{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.

{remarks}
{example}{code:csharp|title=C#}
Parameters
Param
row
row

An int representing the row index to set RowHeightExact for.

Param
exact
exact

A boolean that represents if the specified row's height should be "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#


          //--- Set RowHeightExact for the 3rd row to exact
          oTable.SetRowHeightExact(2, true);
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          '--- Set RowHeightExact for the 3rd row to exact
          oTable.SetRowHeightExact(2, True)
        
{code} {example}