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.

 public double GetRowHeight(int rowIndex)
Public Function GetRowHeight(ByVal rowIndex As Integer) As Double

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

The height of the row, in points.

double rowHeight = a.GetRowHeight(0);
Dim rowHeight As Double = a.GetRowHeight(0)