JavaFX Tutorial - Java Tooltip.wrapTextProperty()








Syntax

Tooltip.wrapTextProperty() has the following syntax.

public final BooleanProperty wrapTextProperty()

Example

In the following code shows how to use Tooltip.wrapTextProperty() method.

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Tooltip;
import javafx.stage.Stage;
//from w w w  .j a  v  a2 s .  c  o  m

public class Main extends Application {
    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage stage) {
        Scene scene = new Scene(new Group());
        stage.setWidth(300);
        stage.setHeight(150);

        Button button = new Button("Hover Over Me");
        Tooltip toolTip = new Tooltip("Tooltip for Button");
        toolTip.setWrapText(true);
        System.out.println(toolTip.wrapTextProperty());
        
        button.setTooltip(toolTip);        
        
        ((Group) scene.getRoot()).getChildren().add(button);

        stage.setScene(scene);
        stage.show();
    }
}