Record Class TextLineInfo
java.lang.Object
java.lang.Record
javafx.scene.text.TextLineInfo
- Record Components:
start
- the start offset for the lineend
- the end offset for the line (index of the last character + 1)bounds
- the bounds of the text line, in local coordinates:-
minX
- the x origin of the line (relative to the layout). The x origin is defined by TextAlignment of the text layout, always zero for left-aligned text. -
minY
- the ascent of the line (negative). The ascent of the line is the max ascent of all fonts in the line. -
width
- the width of the line. The width of the line is sum of all the run widths in the line, it is not affect by the wrapping width but it will include any changes caused by justification. -
height
- the height of the line. The height of the line is sum of the max ascent, max descent, and max line gap of all the fonts in the line.
-
Provides the information about a text line in a text layout.
- Since:
- 25
-
Constructor Summary
ConstructorsConstructorDescriptionTextLineInfo
(int start, int end, Rectangle2D bounds) Creates an instance of aTextLineInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionbounds()
Returns the value of thebounds
record component.int
end()
Returns the value of theend
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
start()
Returns the value of thestart
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with thecompare
method from their corresponding wrapper classes. -
start
-
end
-
bounds
-