Sets the minimum width of this box. Note that it can not be set blow PaneBox#MIN_WIDTH. @param width
(double width)
| 546 | * @param width |
| 547 | */ |
| 548 | public void setMinWidth(double width) { |
| 549 | this.borderPane.setMinWidth(restrictedWidth(width)); |
| 550 | } |
| 551 | |
| 552 | public double getMinWidth() { |
| 553 | return this.borderPane.getMinWidth(); |
no test coverage detected