Sets the maximum height of this box. Note that it can not be set above PaneBox#MAX_HEIGHT. @param width
(double height)
| 593 | * @param width |
| 594 | */ |
| 595 | public void setMaxHeight(double height) { |
| 596 | this.borderPane.setMaxHeight(restrictedHeight(height)); |
| 597 | } |
| 598 | |
| 599 | public double getMaxHeight() { |
| 600 | return this.borderPane.getMaxHeight(); |
nothing calls this directly
no test coverage detected