Example usage for javafx.scene.layout FlowPane getContentBias

List of usage examples for javafx.scene.layout FlowPane getContentBias

Introduction

In this page you can find the example usage for javafx.scene.layout FlowPane getContentBias.

Prototype

@Override
    public Orientation getContentBias() 

Source Link

Usage

From source file:Main.java

@Override
public void start(Stage primaryStage) {
    FlowPane flowPane = new FlowPane(Orientation.HORIZONTAL, 20, 20);
    flowPane.setPrefWrapLength(210);/*from ww  w.j  ava 2 s.  c  o 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.getContentBias());

    Scene scene = new Scene(flowPane);
    primaryStage.setScene(scene);
    primaryStage.show();
}