Returns the height of the specified range.
[Visual Basic] Property ReadOnly Height As Double [C#] double Height { get; } [C++] __property double get_Height(); [JScript] function get Height() : double
The height of the specified range measured in points.
This example gets the height of selected range.
[C#]
double height;
height = book.Worksheets[1].Selection.Height;
[Visual Basic]
Dim height As Double
height = book.Worksheets(1).Selection.Height
[C++]
double height;
height = book->Worksheets->Item[1]->Selection->Height;
IRange Interface | NativeExcel Namespace | RowHeight Property | Width Property