{description}
{excerpt}Sets or returns the height of the row in points \(1/72 of an inch\).{excerpt}
{signature:C#}
 public double Height{ get; set; }
{signature}{signature:vb.net}
Public Property Height() As Double
{signature}
{example}{code:csharp|title=C#}

          //--- Get Height
          double rowHeight = rowProps.Height;
          
          //--- Set Height
          rowProps.Height = 35;
        {code}
{code:vb.net|title=vb.net}

          '--- Get Height
          Dim rowHeight As Double = rowProps.Height

          '--- Set Height
          rowProps.Height = 35
        {code}

{example}