Example usage for javafx.scene.control Tooltip getTextAlignment

List of usage examples for javafx.scene.control Tooltip getTextAlignment

Introduction

In this page you can find the example usage for javafx.scene.control Tooltip getTextAlignment.

Prototype

public final TextAlignment getTextAlignment() 

Source Link

Usage

From source file:Main.java

@Override
public void start(Stage stage) {
    Scene scene = new Scene(new Group());
    stage.setWidth(300);/*  w  ww .j av a 2s .  c  o m*/
    stage.setHeight(150);

    Button button = new Button("Hover Over Me");
    Tooltip toolTip = new Tooltip("Tooltip for Button");
    System.out.println(toolTip.getTextAlignment());
    button.setTooltip(toolTip);

    ((Group) scene.getRoot()).getChildren().add(button);

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