Example usage for javafx.scene.control TitledPane setPrefWidth

List of usage examples for javafx.scene.control TitledPane setPrefWidth

Introduction

In this page you can find the example usage for javafx.scene.control TitledPane setPrefWidth.

Prototype

public final void setPrefWidth(double value) 

Source Link

Usage

From source file:net.sourceforge.entrainer.gui.EntrainerFX.java

private void setTitledPaneWidth(TitledPane tp, double width) {
    tp.setPrefWidth(width);
}