Sets the minHeight, prefHeight, and maxHeight to the specified value.
(Value height)
| 131 | |
| 132 | /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */ |
| 133 | public Cell<T> height (Value height) { |
| 134 | if (height == null) throw new IllegalArgumentException("height cannot be null."); |
| 135 | minHeight = height; |
| 136 | prefHeight = height; |
| 137 | maxHeight = height; |
| 138 | return this; |
| 139 | } |
| 140 | |
| 141 | /** Sets the minHeight, prefHeight, and maxHeight to the specified value. */ |
| 142 | public Cell<T> height (float height) { |