Syntax

expression.RowHeight

expression A variable that represents a Range object.

Remarks

You can use the Height property to return the total height of a range of cells.

Differences between RowHeight and Height include the following:

Example

This example doubles the height of row one on Sheet1.

Visual Basic for Applications
With Worksheets("Sheet1").Rows(1) .RowHeight = .RowHeight * 2 End With
How do I set row height? make row larger row height row height property RowHeight RowHeight Property What is the height of a cell

See also: