How to get the height of VBox before setting it to the parent

563 Views Asked by At

I have a VBox with elements and one Line(javafx). I want the line's height to be same as that of the VBox. These elements are put inside a Hbox and I have many such Hbox's.

The problem is vbox.getHeight() returns me zero unless I have put the whole thing inside the scene graph.

Any alternatives to solve this ?

1

There are 1 best solutions below

1
On BEST ANSWER

You could bind the height of the line to the heightProperty of the VBox.