Qt 6.11 is out! See what's new in the release
blog
TextArea QTextCharFormat::setUnderlineStyle
QML and Qt Quick
1
Posts
1
Posters
785
Views
1
Watching
-
Is it possible use different underline styles with a TextArea? Currently I am able to:
@QTextCharFormat fmt;
fmt.setUnderlineStyle(QTextCharFormat::SingleUnderline);@
But
@QTextCharFormat fmt;
fmt.setUnderlineStyle(QTextCharFormat::SpellCheckUnderline);@has no effect. I am attempting to implement spell checking.
Thank You.