I have a collection of buttons:
VBox menuButtons = new VBox(); menuButtons.getChildren().addAll(addButton, editButton, exitButton);
I want to a
VBox supports spacing:
VBox
VBox menuButtons = new VBox(5);
or
menuButtons.setSpacing(5);