Example: RowHeight property

This example displays the row height of the range.

  Range range = sheet.range("A1:E6");
  int rowHeight = range.getRowHeight();
  System.out.println(rowHeight);

Related information

RowHeight property