package com.javafx.preview.control.test; import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.text.Text; import javafx.stage.Stage; public class TextBoundsTest extends Application { @Override public void start(Stage stage) { stage.setTitle("Text Bounds Test"); stage.setWidth(640); stage.setHeight(480); Group group = new Group(); group.setLayoutX(40); group.setLayoutY(40); Text text = new Text(""); text.setWrappingWidth(120); group.getChildren().add(text); System.out.println(text.getBoundsInLocal().getHeight()); Scene scene = new Scene(group); scene.setFill(Color.GHOSTWHITE); stage.setScene(scene); stage.setVisible(true); } public static void main(String[] args) { Application.launch(TextBoundsTest.class, args); } }