Example usage for javafx.scene.layout TilePane getAlignment

List of usage examples for javafx.scene.layout TilePane getAlignment

Introduction

In this page you can find the example usage for javafx.scene.layout TilePane getAlignment.

Prototype

public static Pos getAlignment(Node node) 

Source Link

Document

Returns the child's alignment constraint if set.

Usage

From source file:Main.java

@Override
public void start(Stage stage) {
    Scene scene = new Scene(new Group(), 450, 250);

    TilePane tile = new TilePane();

    tile.setHgap(8);/*w w  w  .  ja va 2 s.  c  om*/
    tile.setPrefColumns(4);
    for (int i = 0; i < 20; i++) {
        tile.getChildren().add(new CheckBox("CheckBox"));
    }

    HBox hbox = new HBox(10);
    hbox.setPadding(new Insets(20, 0, 0, 20));
    hbox.getChildren().setAll(tile);

    System.out.println(TilePane.getAlignment(hbox));

    Group root = (Group) scene.getRoot();
    root.getChildren().add(hbox);
    stage.setScene(scene);
    stage.show();
}