Java Tooltip.setWrapText(boolean value)

Syntax

Tooltip.setWrapText(boolean value) has the following syntax.

public final void setWrapText(boolean value)

Example

In the following code shows how to use Tooltip.setWrapText(boolean value) method.


import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.OverrunStyle;
import javafx.scene.control.Tooltip;
import javafx.scene.text.TextAlignment;
import javafx.stage.Stage;
//  w  w  w  .j ava2s  . c om

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);
        
        button.setTooltip(toolTip);        
        
        ((Group) scene.getRoot()).getChildren().add(button);

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




















Home »
  Java Tutorial »
    javafx.scene.control »




Accordion
Button
CheckBox
CheckMenuItem
ChoiceBox
ComboBox
ContextMenu
Label
Menu
ProgressBar
ToggleButton
ToolBar
Tooltip
TreeItem
TreeView