Example usage for javafx.scene.control TitledPane setOpacity

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

Introduction

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

Prototype

public final void setOpacity(double value) 

Source Link

Usage

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

private void unexpandeTitledPane(TitledPane tp) {
    tp.setExpanded(false);
    tp.setOpacity(0);
}