Search in sources :

Example 1 with TextExt

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;
}
Also used : TextExt(org.fxmisc.richtext.TextExt)

Aggregations

TextExt (org.fxmisc.richtext.TextExt)1