if(iHeight > maxHeight) {
maxHeight = iHeight;
}
iCol++;
}
Row row = model.getRow(iRow);
if(maxHeight < row.getMinHeight()) {
row.setHeight(row.getMinHeight());
} else if(maxHeight == 0) {
//min width may be zero
row.setDefaultHeight();
} else if(maxHeight > row.getMaxHeight()) {
row.setHeight(row.getMaxHeight());
} else {
row.setHeight(maxHeight);
}
}