CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
Java Quiz #60

Padding with Insets

easyJavaFX

What does setPadding() do in this code?

📄 Code

1VBox root = new VBox(10);
2root.setPadding(new Insets(20));
3root.getChildren().addAll(
4 new Label("Hello"),
5 new Button("Click")
6);