Gets or sets the height of rows in the specified range.
[Visual Basic] Property RowHeight As Double [C#] double RowHeight { get; set; } [C++] __property double get_RowHeight(); __property void set_RowHeight(double ); [JScript] function get RowHeight() : double function set RowHeight(double);
The height of rows in the specified range, measured in points.
This example doubles the height of row one on sheet one.
[C#]
IRange range = book.Worksheets[1].Range["A1"];
range.RowHeight *= 2;
[Visual Basic]
Dim range As IRange = book.Worksheets(1).Range("A1")
range.RowHeight = range.RowHeight * 2
[C++]
IRange* range = book->Worksheets->Item[1]->Range->Item[S"A1"];
range->RowHeight *= 2;
IRange Interface | NativeExcel Namespace | ColumnWidth Property | Height Property