[]
Determines if the row height of the IRange object equals the standard height of the sheet.
bool UseStandardHeight { get; set; }
Property UseStandardHeight As Boolean
IRange row = worksheet.Range["1:1"];
row.RowHeight = 30;
row.UseStandardHeight = true;
bool useStandardHeight = row.UseStandardHeight;