use of org.fxmisc.richtext.TextExt in project RichTextFX by FXMisc.
the class TextHyperlinkArea method createStyledTextNode.
public static TextExt createStyledTextNode(Consumer<TextExt> applySegment) {
TextExt t = new TextExt();
t.setTextOrigin(VPos.TOP);
applySegment.accept(t);
return t;
}
Aggregations