Sets or returns the height of the row in points (1/72 of an inch).

public double Height{ get; set; }
Public Property Height() As Double

          //--- Get Height
          double rowHeight = rowProps.Height;
          
          //--- Set Height
          rowProps.Height = 35;
        
          '--- Get Height
          Dim rowHeight As Double = rowProps.Height

          '--- Set Height
          rowProps.Height = 35