Add Method (Rows Collection Object) Example

This example creates a row in an existing table and sets the height of the new row to 54 points (.75 inches).

With ActivePresentation.Slides(2).Shapes(5).Table
    .Rows.Add.Height = 54
End With