RowHeight Property
RowHeight
Gets or sets the height of the individual rows represented by this range in points.
Declaration
double RowHeight { get; set; }
Property RowHeight As Double
Examples
IRange range = worksheet.Range["1:1"];
range.RowHeight = 30;
double rowHeight = range.RowHeight;