Top Description Inners Fields Constructors Methods
javafx.scene.text

public non-sealed Class Text

extends Shape
Class Inheritance
Annotations
@DefaultProperty:text
Imports
javafx.css.converter.BooleanConverter, .EnumConverter, .SizeConverter, com.sun.javafx.geom.BaseBounds, .Path2D, .RectBounds, .TransformedShape, com.sun.javafx.geom.transform.BaseTransform, com.sun.javafx.scene.DirtyBits, .NodeHelper, com.sun.javafx.scene.shape.ShapeHelper, .TextHelper, com.sun.javafx.scene.text.GlyphList, .TextLayout, .TextLayoutFactory, .TextLine, .TextSpan, .FontHelper, com.sun.javafx.sg.prism.NGNode, .NGShape, .NGText, com.sun.javafx.text.TextRun, com.sun.javafx.tk.Toolkit, javafx.beans.DefaultProperty, .InvalidationListener, javafx.beans.binding.DoubleBinding, .ObjectBinding, javafx.scene.AccessibleAttribute, .AccessibleRole, .Node, javafx.scene.paint.Color, .Paint, javafx.scene.shape.LineTo, .MoveTo, .PathElement, .Shape, .StrokeType, java.util.ArrayList, .Collections, .List, javafx.beans.property.BooleanProperty, .DoubleProperty, .DoublePropertyBase, .IntegerProperty, .IntegerPropertyBase, .ObjectProperty, .ObjectPropertyBase, .ReadOnlyDoubleProperty, .ReadOnlyDoubleWrapper, .ReadOnlyObjectProperty, .SimpleBooleanProperty, .SimpleObjectProperty, .StringProperty, .StringPropertyBase, javafx.css.CssMetaData, .FontCssMetaData, .Styleable, .StyleableBooleanProperty, .StyleableDoubleProperty, .StyleableIntegerProperty, .StyleableObjectProperty, .StyleableProperty, javafx.geometry.BoundingBox, .Bounds, .NodeOrientation, .Point2D, .VPos

The Text class defines a node that displays a text. Paragraphs are separated by '\n' and the text is wrapped on paragraph boundaries.
import javafx.scene.text.*;

Text t = new Text(10, 50, "This is a test");
t.setFont(new Font(20));
import javafx.scene.text.*;

Text t = new Text();
text.setFont(new Font(20));
text.setText("First row\nSecond row");
import javafx.scene.text.*;

Text t = new Text();
text.setFont(new Font(20));
text.setWrappingWidth(200);
text.setTextAlignment(TextAlignment.JUSTIFY)
text.setText("The quick brown fox jumps over the lazy dog");
Since
JavaFX 2.0

Nested and Inner Type Summary

Modifier and TypeClass and Description
private static class
private class

Field Summary

Modifier and TypeField and Description
private Text.TextAttribute
private ObjectProperty<TextBoundsType>
boundsType

Determines how the bounds of the text node are calculated.

private static final TextBoundsType
private static final boolean
private static final int
private static final double
private static final int
private static final Color
private static final int
private static final boolean
private static final TextAlignment
private static final VPos
private static final boolean
private static final PathElement[]
private ObjectProperty<Font>
font

Defines the font of text.

private ObjectProperty<FontSmoothingType>
fontSmoothingType

Specifies a requested font smoothing type: gray or LCD.

private boolean
private TextLayout
private BaseBounds
private boolean
private StringProperty
text

Defines text string that is to be displayed.

private GlyphList[]
private TextSpan
private DoubleProperty
wrappingWidth

Defines a width constraint for the text in user space coordinates.

private DoubleProperty
x

Defines the X coordinate of text origin.

private DoubleProperty
y

Defines the Y coordinate of text origin.

Constructor Summary

AccessConstructor and Description
public
Text()

Creates an empty instance of Text.

public
Text(String
text to be contained in the instance
text
)

Creates an instance of Text containing the given string.

public
Text(double
the horizontal position of the text
x
,
double
the vertical position of the text
y
,
String
text to be contained in the instance
text
)

Creates an instance of Text on the given coordinates containing the given string.

Method Summary

Modifier and TypeMethod and Description
public final ReadOnlyDoubleProperty

Returns:

the baseline offset from this text node
baselineOffsetProperty
()

The 'alphabetic' (or roman) baseline offset from the Text node's layoutBounds.minY location.

public final ObjectProperty<TextBoundsType>
public final BooleanProperty

Returns:

the caretBias property
caretBiasProperty
()

The type of caret bias in the content.

public final IntegerProperty

Returns:

the caretPosition property
caretPositionProperty
()

The caret index in the content.

public final PathElement[]

Returns:

an array of PathElement which can be used to create a Shape
caretShape
(int
the character index for the caret
charIndex
,
boolean
whether the caret is biased on the leading edge of the character
caretBias
)

Returns the shape for the caret at the given index and bias.

public final ReadOnlyObjectProperty<PathElement[]>

Returns:

the caretShape property
caretShapeProperty
()

The shape of caret, in local coordinates.

private void
private void
private boolean
private BaseBounds
private Bounds
private Shape
private NGNode
private void
private void
private int
public final ObjectProperty<Font>
public final ObjectProperty<FontSmoothingType>
public final double
getBaselineOffset()

Overrides javafx.scene.Node.getBaselineOffset.

The 'alphabetic' (or 'roman') baseline offset from the node's layoutBounds.minY location that should be used when this node is being vertically aligned by baseline with other nodes.

public final TextBoundsType
public final int
public final PathElement[]
public static List<CssMetaData<? extends Styleable, ?>>

Returns:

the CssMetaData
getClassCssMetaData
()

Hides javafx.scene.shape.Shape.getClassCssMetaData.

Gets the CssMetaData associated with this class, which may include the CssMetaData of its superclasses.

public List<CssMetaData<? extends Styleable, ?>>
getCssMetaData()

Overrides javafx.scene.shape.Shape.getCssMetaData.

Implements javafx.css.Styleable.getCssMetaData.

This method should delegate to Node#getClassCssMetaData() so that a Node's CssMetaData can be accessed without the need for reflection.

public final Font
private Object

Returns:

the font
getFontInternal
()

Internally used safe version of getFont which never returns null.

public final FontSmoothingType
public final double
private BaseBounds
private PathElement[]
getRange(int start, int end, int type)

private GlyphList[]
public final int
public final Paint
public final PathElement[]
public final int
private Shape
pack-priv BaseBounds
public final int
public final String
public final TextAlignment
private Text.TextAttribute
private String
private TextLayout
public final VPos
pack-priv TextSpan
private BaseBounds
public final double
public final double
getX()

public final double
getY()

private float
private float
public final HitInfo

Returns:

a HitInfo representing the character index found
hitTest
(Point2D
the specified point to be tested
point
)

Maps local point to HitInfo in the content.

public final boolean
private boolean
public final boolean
public final boolean
pack-priv void
public final DoubleProperty

Returns:

the vertical space in pixel between lines
lineSpacingProperty
()

Defines the vertical space in pixel between lines.

private void
private void
public Object
queryAccessibleAttribute(AccessibleAttribute
the requested attribute
attribute
,
Object...
optional list of parameters
parameters
)

Overrides javafx.scene.Node.queryAccessibleAttribute.

This method is called by the assistive technology to request the value for an attribute.

public final PathElement[]

Returns:

an array of PathElement which can be used to create a Shape
rangeShape
(int
the beginning character index for the range
start
,
int
the end character index (non-inclusive) for the range
end
)

Returns the shape for the range of the text in local coordinates.

public final IntegerProperty

Returns:

the selectionEnd property
selectionEndProperty
()

The end index of the selection in the content.

public final ObjectProperty<Paint>

Returns:

the fill color of selected text
selectionFillProperty
()

The fill color of selected text.

public final ReadOnlyObjectProperty<PathElement[]>

Returns:

the selectionShape property
selectionShapeProperty
()

The shape of the selection in local coordinates.

public final IntegerProperty

Returns:

the selectionStart property
selectionStartProperty
()

The start index of the selection in the content.

public final void
public final void
setCaretBias(boolean value)

public final void
setCaretPosition(int value)

public final void
setFont(Font value)

public final void
public final void
setLineSpacing(double spacing)

public final void
setSelectionEnd(int value)

public final void
public final void
setSelectionStart(int value)

public final void
setStrikethrough(boolean value)

public final void
setTabSize(int spaces)

public final void
setText(String value)

public final void
public final void
public final void
setUnderline(boolean value)

public final void
setWrappingWidth(double value)

public final void
setX(double value)

public final void
setY(double value)

public final BooleanProperty

Returns:

if each line of text should have a line through it
strikethroughProperty
()

Defines if each line of text should have a line through it.

public final IntegerProperty

Returns:

the tabSize property
tabSizeProperty
()

The size of a tab stop in spaces.

public final ObjectProperty<TextAlignment>

Returns:

the horizontal text alignment in the bounding box
textAlignmentProperty
()

Defines horizontal text alignment in the bounding box.

public final ObjectProperty<VPos>

Returns:

the origin of text coordinate system in local coordinates
textOriginProperty
()

Defines the origin of text coordinate system in local coordinates.

public final StringProperty
public String

Returns:

a string representation of this Text object.
toString
()

Overrides javafx.scene.Node.toString.

Returns a string representation of this Text object.

public final BooleanProperty

Returns:

if each line of text should have a line below it
underlineProperty
()

Defines if each line of text should have a line below it.

public final PathElement[]

Returns:

an array of PathElement which can be used to create a Shape
underlineShape
(int
the beginning character index for the range
start
,
int
the end character index (non-inclusive) for the range
end
)

Returns the shape for the underline in local coordinates.

private void
public boolean
usesMirroring()

Overrides javafx.scene.Node.usesMirroring.

Determines whether a node should be mirrored when node orientation is right-to-left.

public final DoubleProperty
public final DoubleProperty
public final DoubleProperty
Inherited from javafx.scene.shape.Shape:
fillPropertygetFillgetStrokegetStrokeDashArraygetStrokeDashOffsetgetStrokeLineCapgetStrokeLineJoingetStrokeMiterLimitgetStrokeTypegetStrokeWidthintersectisSmoothsetFillsetSmoothsetStrokesetStrokeDashOffsetsetStrokeLineCapsetStrokeLineJoinsetStrokeMiterLimitsetStrokeTypesetStrokeWidthsmoothPropertystrokeDashOffsetPropertystrokeLineCapPropertystrokeLineJoinPropertystrokeMiterLimitPropertystrokePropertystrokeTypePropertystrokeWidthPropertysubtractunion