List of usage examples for javafx.scene.layout Region prefWidthProperty
public final DoubleProperty prefWidthProperty()
From source file:mesclasses.view.TimetableController.java
private void bindWidth(Region node, Pane parent, int divider) { node.minWidthProperty().bind(parent.widthProperty().divide(divider)); node.prefWidthProperty().bind(parent.widthProperty().divide(divider)); node.maxWidthProperty().bind(parent.widthProperty().divide(divider)); }