List of usage examples for javafx.scene.layout FlowPane getRowValignment
public final VPos getRowValignment()
From source file:Main.java
@Override public void start(Stage primaryStage) { FlowPane flowPane = new FlowPane(Orientation.HORIZONTAL, 20, 20); flowPane.setPrefWrapLength(210);// ww w . ja va 2 s . co m Button btn = new Button(); for (int i = 0; i < 8; i++) { btn = new Button("Button"); btn.setPrefSize(100, 50); flowPane.getChildren().add(btn); } System.out.println(flowPane.getRowValignment()); Scene scene = new Scene(flowPane); primaryStage.setScene(scene); primaryStage.show(); }