Example usage for javafx.scene.layout TilePane tileWidthProperty

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

Introduction

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

Prototype

public final ReadOnlyDoubleProperty tileWidthProperty() 

Source Link

Document

The actual width of each tile.

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);//from   w w w.  j ava  2 s .  co m
    tile.setPrefColumns(4);
    for (int i = 0; i < 20; i++) {
        tile.getChildren().add(new CheckBox("CheckBox"));
    }
    System.out.println(tile.tileWidthProperty());

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

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