Sets the height of each cell, in pixels. If the specified value is less than or equal to zero the current cell renderer is queried for each row's height. This is a bound property. @param rowHeight the height of each cell, in pixels @beaninfo bound: true description: The height of each
(int rowHeight)
| 980 | * description: The height of each cell. |
| 981 | */ |
| 982 | public void setRowHeight(int rowHeight) |
| 983 | { |
| 984 | int oldValue = this.rowHeight; |
| 985 | |
| 986 | this.rowHeight = rowHeight; |
| 987 | rowHeightSet = true; |
| 988 | firePropertyChange(ROW_HEIGHT_PROPERTY, oldValue, this.rowHeight); |
| 989 | invalidate(); |
| 990 | } |
| 991 | |
| 992 | /** |
| 993 | * Returns the height of each row. If the returned value is less than |
no test coverage detected