Page tree

Versions Compared

Key

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

...

Wiki Markup
{description}
{excerpt}Returns the height \- in points \(1/72 of an inch\) \- of the specified row. When converted to character widths, this must be a value that is between 0 \- 409.

...

Signature
C#C#
{excerpt}
{signature:C#}
 public double GetRowHeight(int rowIndex)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function GetRowHeight(ByVal rowIndex As Integer) As Double
Parameters

...

The 0-based index of the row, relative to the first row in the area.

Returns

The height of the row, in points.

{signature}
{parameters}
{param:rowIndex}The 0\-based index of the row, relative to the first row in the area.{param}
{returns}The height of the row, in points.{returns}
{example}{code:csharp|title=C#}
double rowHeight = a.GetRowHeight(0);
{code}
{code:vbnet|title=vb.net
}
Dim rowHeight As Double = a.GetRowHeight(0)
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle

...

{code}

{example}
{scrollbar}