Example usage for javafx.scene.layout RowConstraints RowConstraints

List of usage examples for javafx.scene.layout RowConstraints RowConstraints

Introduction

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

Prototype

public RowConstraints(double minHeight, double prefHeight, double maxHeight, Priority vgrow, VPos valignment,
        boolean fillHeight) 

Source Link

Document

Creates a row constraint object with a fixed size range, vertical grow priority, vertical alignment, and vertical fill behavior.

Usage

From source file:de.ks.idnadrev.information.chart.ChartDataEditor.java

protected void addRowConstraint() {
    dataContainer.getRowConstraints().add(new RowConstraints(30, Control.USE_COMPUTED_SIZE,
            Control.USE_COMPUTED_SIZE, Priority.NEVER, VPos.CENTER, true));
}