Sets the maximum width of this box. Note that it can not be set blow PaneBox#MAX_WIDTH. @param width
(double width)
| 567 | * @param width |
| 568 | */ |
| 569 | public void setMaxWidth(double width) { |
| 570 | this.borderPane.setMaxWidth(restrictedWidth(width)); |
| 571 | } |
| 572 | |
| 573 | public double getMaxWidth() { |
| 574 | return this.borderPane.getMaxWidth(); |
no test coverage detected