setRowHeight method

void setRowHeight(
  1. int rowIndex,
  2. double rowHeight
)

Set Row Height

Implementation

void setRowHeight(int rowIndex, double rowHeight) {
  _checkMaxRow(rowIndex);
  if (rowHeight < 0) return;
  _rowHeights[rowIndex] = rowHeight;
}