Sets the minimum height of this box. Note that it can not be set above PaneBox#MIN_HEIGHT. @param height
(double height)
| 580 | * @param height |
| 581 | */ |
| 582 | public void setMinHeight(double height) { |
| 583 | this.borderPane.setMinHeight(restrictedHeight(height)); |
| 584 | } |
| 585 | |
| 586 | public double getMinHeight() { |
| 587 | return this.borderPane.getMinHeight(); |
no test coverage detected