Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns or a {{boolean}} that represents if the row height is "exact" \(true\) or "at least" \(false\).{excerpt}
{signature:C#}
 public boolean GetRowHeightExact(int row)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetRowHeightExact(ByVal row As Integer) As Boolean
Parameters

...

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.

{signature}
{parameters}
{param:row}An {{int}} representing the row index to get RowHeightExact for.{param}
{returns}A {{boolean}} that represents if the specified row's height is "exact" \(true\) or "at least" \(false\).{returns}
{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#}

          //--- Get RowHeightExact for the 3rd row
          bool rowHeightExact = oTable.GetRowHeightExact(2);
        
{code}
{code:vb.net
|title=vb.net
}

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

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle